app-clever-panda-sprint/app/page.tsx

20 lines
517 B
TypeScript

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