Update app/page.tsx

This commit is contained in:
kleap-admin 2026-01-16 16:28:12 +00:00
parent cf11df70e2
commit 0a18d2a26a
1 changed files with 3 additions and 9 deletions

View File

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