Update app/page.tsx
This commit is contained in:
parent
cf11df70e2
commit
0a18d2a26a
12
app/page.tsx
12
app/page.tsx
|
|
@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue