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 { Services } from "@/components/services";
import { Gallery } from "@/components/gallery";
import { Testimonials } from "@/components/testimonials";
import { Contact } from "@/components/contact";
import { Footer } from "@/components/footer";
import { AIFeatures } from "@/components/ai-features";
export default function Home() {
return (
<main className="min-h-screen bg-neutral-950">
<main>
<Hero />
<Services />
<AIFeatures />
<Testimonials />
<Gallery />
<Contact />
<Footer />
</main>
);
}