Update app/page.tsx

This commit is contained in:
kleap-admin 2026-01-16 16:25:49 +00:00
parent 9425b8acb2
commit 4aea9d65e4
1 changed files with 19 additions and 0 deletions

19
app/page.tsx Normal file
View File

@ -0,0 +1,19 @@
import { Hero } from "@/components/hero";
import { Services } from "@/components/services";
import { Gallery } from "@/components/gallery";
import { Testimonials } from "@/components/testimonials";
import { Contact } from "@/components/contact";
import { Footer } from "@/components/footer";
export default function Home() {
return (
<main className="min-h-screen bg-neutral-950">
<Hero />
<Services />
<Testimonials />
<Gallery />
<Contact />
<Footer />
</main>
);
}