mirror of
https://github.com/dathere/qsvpro.dathere.com.git
synced 2025-12-26 11:07:01 +00:00
feat: initial commit!
This commit is contained in:
commit
3c04acba10
53 changed files with 21596 additions and 0 deletions
38
src/pages/index.astro
Normal file
38
src/pages/index.astro
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
---
|
||||
import Layout from "../layouts/Layout.astro";
|
||||
import { Hero } from "../components/Hero.jsx";
|
||||
import { Navbar } from "../components/Navbar.jsx";
|
||||
import { Features1 } from "../components/Features1.jsx";
|
||||
import { Features2 } from "../components/Features2.jsx";
|
||||
import { Testimonials } from "../components/Testimonials.jsx";
|
||||
import { FeaturesDiagonal } from "../components/FeaturesDiagonal.jsx";
|
||||
import { Pricing } from "../components/Pricing.jsx";
|
||||
import { FAQ } from "../components/FAQ.jsx";
|
||||
// import { Brands } from "../components/Brands.jsx";
|
||||
import { Tech } from "../components/Tech.jsx";
|
||||
import { Divider } from "../components/Divider";
|
||||
import { Footer } from "../components/Footer.jsx";
|
||||
import { ScrollUpButton } from "../components/ScrollUpButton";
|
||||
import "../styles/Theme.css";
|
||||
import "../styles/Diagonals.css";
|
||||
import { Features0 } from "../components/Features0";
|
||||
|
||||
---
|
||||
|
||||
<Layout title="qsv pro">
|
||||
<Navbar client:load />
|
||||
<Hero client:load />
|
||||
<Features0 client:load />
|
||||
<Divider />
|
||||
<Features1 client:load />
|
||||
<Divider />
|
||||
<Features2 client:load />
|
||||
<!-- <Testimonials client:load /> -->
|
||||
<FeaturesDiagonal client:load />
|
||||
<Pricing client:load />
|
||||
<!-- <Brands client:load /> -->
|
||||
<Tech client:load />
|
||||
<FAQ client:load />
|
||||
<Footer />
|
||||
<ScrollUpButton client:load />
|
||||
</Layout>
|
||||
Loading…
Add table
Add a link
Reference in a new issue