diff --git a/src/app/page.tsx b/src/app/page.tsx
index 61a5d97..ced095e 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -9,184 +9,199 @@ import FeatureCardSix from "@/components/sections/feature/FeatureCardSix";
import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
+import { MessageCircle } from "lucide-react";
export default function ArchitectureStudioPage() {
return (
-
-
-
-
-
+ <>
+
+
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
+
+
+
+ >
);
-}
+}
\ No newline at end of file
diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx
new file mode 100644
index 0000000..de8681b
--- /dev/null
+++ b/src/app/services/page.tsx
@@ -0,0 +1,120 @@
+"use client";
+
+import ReactLenis from "lenis/react";
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
+import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
+import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
+import { Home, Building, Key, PenTool, Paintbrush } from "lucide-react";
+
+export default function ServicesPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}