feat: add src/app/page.tsx
This commit is contained in:
parent
37f78b8af6
commit
8ea7de7a27
|
|
@ -0,0 +1,23 @@
|
|||
import Navbar from "@/components/Navbar";
|
||||
import Hero from "@/components/Hero";
|
||||
import Stats from "@/components/Stats";
|
||||
import Services from "@/components/Services";
|
||||
import Testimonials from "@/components/Testimonials";
|
||||
import FAQ from "@/components/FAQ";
|
||||
import ContactForm from "@/components/ContactForm";
|
||||
import Footer from "@/components/Footer";
|
||||
|
||||
export default function HomePage() {
|
||||
return (
|
||||
<main className="min-h-screen">
|
||||
<Navbar />
|
||||
<Hero />
|
||||
<Stats />
|
||||
<Services />
|
||||
<Testimonials />
|
||||
<FAQ />
|
||||
<ContactForm />
|
||||
<Footer />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in New Issue