diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
new file mode 100644
index 0000000..375a6a0
--- /dev/null
+++ b/src/app/about/page.tsx
@@ -0,0 +1,55 @@
+"use client";
+
+import ReactLenis from "lenis/react";
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
+import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
+import TeamCardFive from "@/components/sections/team/TeamCardFive";
+import FooterBase from "@/components/sections/footer/FooterBase";
+import { Award, Users, TrendingUp } from "lucide-react";
+
+export default function AboutPage() {
+ return (
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
new file mode 100644
index 0000000..311a4c6
--- /dev/null
+++ b/src/app/contact/page.tsx
@@ -0,0 +1,40 @@
+"use client";
+
+import { useState } from "react";
+import ReactLenis from "lenis/react";
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
+import ContactSplit from "@/components/sections/contact/ContactSplit";
+import FooterBase from "@/components/sections/footer/FooterBase";
+
+export default function ContactPage() {
+ return (
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 0165d48..f06d10a 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -35,10 +35,10 @@ export default function WebAgency2Page() {
navItems={[
{ name: "Work", id: "work" },
{ name: "Services", id: "services" },
- { name: "About", id: "about" },
- { name: "Contact", id: "contact" },
+ { name: "About", id: "/about" },
+ { name: "Contact", id: "/contact" },
]}
- button={{ text: "Get Started", href: "#contact" }}
+ button={{ text: "Get Started", href: "/contact" }}
/>
-
-
-
-
-
);
-}
+}
\ 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..3511759
--- /dev/null
+++ b/src/app/services/page.tsx
@@ -0,0 +1,89 @@
+"use client";
+
+import ReactLenis from "lenis/react";
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
+import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo";
+import FooterBase from "@/components/sections/footer/FooterBase";
+import { Sparkles, CheckCircle } from "lucide-react";
+
+export default function ServicesPage() {
+ return (
+
+
+
+
+
+
+
+ );
+}