diff --git a/src/app/page.tsx b/src/app/page.tsx new file mode 100644 index 0000000..c0a1a02 --- /dev/null +++ b/src/app/page.tsx @@ -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 ( +
+ + + + + + + +
+ ); +}