feat: add src/app/page.tsx

This commit is contained in:
cupadev-admin 2026-03-08 18:33:41 +00:00
parent 37f78b8af6
commit 8ea7de7a27
1 changed files with 23 additions and 0 deletions

23
src/app/page.tsx Normal file
View File

@ -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>
);
}