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