From 8ea7de7a2747ff1c182e2fcba2372075ba75c80b Mon Sep 17 00:00:00 2001 From: cupadev-admin Date: Sun, 8 Mar 2026 18:33:41 +0000 Subject: [PATCH] feat: add src/app/page.tsx --- src/app/page.tsx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/app/page.tsx 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 ( +
+ + + + + + + +
+ ); +}