diff --git a/app/page.tsx b/app/page.tsx new file mode 100644 index 0000000..a69b1ec --- /dev/null +++ b/app/page.tsx @@ -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 ( +
+ + + + + +
+ ); +}