Update app/page.tsx
This commit is contained in:
parent
9425b8acb2
commit
4aea9d65e4
|
|
@ -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>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in New Issue