diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
new file mode 100644
index 0000000..fa5b7d7
--- /dev/null
+++ b/src/app/about/page.tsx
@@ -0,0 +1,127 @@
+"use client";
+
+import ReactLenis from "lenis/react";
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
+import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
+import TeamCardTwo from "@/components/sections/team/TeamCardTwo";
+import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven";
+import FooterBase from "@/components/sections/footer/FooterBase";
+import { Facebook, Twitter, Linkedin } from "lucide-react";
+
+export default function AboutPage() {
+ const navItems = [
+ { name: "Work", id: "work" },
+ { name: "Services", id: "services" },
+ { name: "About", href: "/about" },
+ { name: "Contact", id: "contact" }
+ ];
+
+ const footerColumns = [
+ {
+ title: "Company", items: [
+ { label: "About", href: "/about" },
+ { label: "Services", href: "#services" },
+ { label: "Work", href: "#work" },
+ { label: "Contact", href: "#contact" }
+ ]
+ },
+ {
+ title: "Services", items: [
+ { label: "Web Development", href: "#" },
+ { label: "SEO", href: "#" },
+ { label: "Branding", href: "#" },
+ { label: "UI/UX Design", href: "#" }
+ ]
+ },
+ {
+ title: "Connect", items: [
+ { label: "Twitter", href: "#" },
+ { label: "LinkedIn", href: "#" },
+ { label: "Instagram", href: "#" },
+ { label: "Dribbble", href: "#" }
+ ]
+ }
+ ];
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 0165d48..4d54287 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -16,6 +16,40 @@ import TestimonialCardFifteen from "@/components/sections/testimonial/Testimonia
import { Sparkles, Search, ArrowUpRight, Monitor, Shield, Zap, Puzzle, TrendingUp, Lock, Phone, MessageCircle, BookOpen, Tv, Camera, Music, Settings, Award, Users } from "lucide-react";
export default function WebAgency2Page() {
+ const navItems = [
+ { name: "Work", id: "work" },
+ { name: "Services", id: "services" },
+ { name: "About", id: "about" },
+ { name: "Contact", href: "/contact" },
+ ];
+
+ const footerColumns = [
+ {
+ title: "Company", items: [
+ { label: "About", href: "#about" },
+ { label: "Services", href: "#services" },
+ { label: "Work", href: "#work" },
+ { label: "Contact", href: "/contact" },
+ ],
+ },
+ {
+ title: "Services", items: [
+ { label: "Web Development", href: "#" },
+ { label: "SEO", href: "#" },
+ { label: "Branding", href: "#" },
+ { label: "UI/UX Design", href: "#" },
+ ],
+ },
+ {
+ title: "Connect", items: [
+ { label: "Twitter", href: "#" },
+ { label: "LinkedIn", href: "#" },
+ { label: "Instagram", href: "#" },
+ { label: "Dribbble", href: "#" },
+ ],
+ },
+ ];
+
return (
diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx
new file mode 100644
index 0000000..1b0411d
--- /dev/null
+++ b/src/app/services/page.tsx
@@ -0,0 +1,119 @@
+"use client";
+
+import ReactLenis from "lenis/react";
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
+import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen";
+import PricingCardNine from "@/components/sections/pricing/PricingCardNine";
+import FooterBase from "@/components/sections/footer/FooterBase";
+import { Sparkles } from "lucide-react";
+
+export default function ServicesPage() {
+ return (
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/work/page.tsx b/src/app/work/page.tsx
new file mode 100644
index 0000000..8902fb0
--- /dev/null
+++ b/src/app/work/page.tsx
@@ -0,0 +1,109 @@
+"use client";
+
+import ReactLenis from "lenis/react";
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
+import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
+import BlogCardTwo from "@/components/sections/blog/BlogCardTwo";
+import FooterBase from "@/components/sections/footer/FooterBase";
+import { ArrowUpRight } from "lucide-react";
+
+export default function PortfolioPage() {
+ return (
+
+
+
+
+
+
+
+
+ );
+}