diff --git a/src/app/page.tsx b/src/app/page.tsx new file mode 100644 index 0000000..3a9950a --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,19 @@ +import HeroSection from "@/components/sections/HeroSection"; +import ServicesSection from "@/components/sections/ServicesSection"; +import AboutSection from "@/components/sections/AboutSection"; +import TestimonialsSection from "@/components/sections/TestimonialsSection"; +import GallerySection from "@/components/sections/GallerySection"; +import ContactSection from "@/components/sections/ContactSection"; + +export default function HomePage() { + return ( + <> + + + + + + + + ); +}