From 724fbe098daa4ae387326304062e7f8ff6cad499 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 14:23:29 +0000 Subject: [PATCH 1/6] Add src/app/about/page.tsx --- src/app/about/page.tsx | 46 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..7066363 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,46 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import AboutMetric from "@/components/sections/about/AboutMetric"; +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 -- 2.49.1 From 0e82994700b6e3b396ef514d2fb19767e2cb3e07 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 14:23:30 +0000 Subject: [PATCH 2/6] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 81 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..9f02a10 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,81 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterBase from "@/components/sections/footer/FooterBase"; + +export default function ContactPage() { + return ( + + + +
+ +
+ +
+
+ ); +} -- 2.49.1 From 3a2baa97d3cbc6d52f0650df35478a62bdbd8181 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 14:23:31 +0000 Subject: [PATCH 3/6] Update src/app/page.tsx --- src/app/page.tsx | 130 +++++++++++------------------------------------ 1 file changed, 31 insertions(+), 99 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0165d48..2485147 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -36,9 +36,9 @@ export default function WebAgency2Page() { { name: "Work", id: "work" }, { name: "Services", id: "services" }, { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "Contact", id: "/contact" }, ]} - button={{ text: "Get Started", href: "#contact" }} + button={{ text: "Get Started", href: "/contact" }} /> Date: Thu, 9 Apr 2026 14:23:32 +0000 Subject: [PATCH 4/6] Add src/app/portfolio/page.tsx --- src/app/portfolio/page.tsx | 46 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 src/app/portfolio/page.tsx diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx new file mode 100644 index 0000000..3f12f1c --- /dev/null +++ b/src/app/portfolio/page.tsx @@ -0,0 +1,46 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix"; +import FooterBase from "@/components/sections/footer/FooterBase"; + +export default function PortfolioPage() { + return ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file -- 2.49.1 From 06f4e270661823ce6361aca290f72e5ed69d7c54 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 14:23:32 +0000 Subject: [PATCH 5/6] Add src/app/services/page.tsx --- src/app/services/page.tsx | 48 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 src/app/services/page.tsx diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..78e4816 --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,48 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import FeatureCardEight from "@/components/sections/feature/FeatureCardEight"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { Zap, Search, Layout, Palette } from "lucide-react"; + +export default function ServicesPage() { + return ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file -- 2.49.1 From 16890c2c22e5309178e6e898f0a0e2585f10ca58 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 14:23:33 +0000 Subject: [PATCH 6/6] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 858b8d0..ecc32c4 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #0a0a0a; - --card: #161616; - --foreground: #f0f0f0; - --primary-cta: #ffffff; + --background: #fdfdf0; + --card: #fdfdf0; + --foreground: #4a0404; + --primary-cta: #dc2626; --primary-cta-text: #0a0a0a; - --secondary-cta: #1e1e1e; + --secondary-cta: #facc15; --secondary-cta-text: #e0e0e0; - --accent: #d0d0d0; - --background-accent: #9a9a9a; + --accent: #facc15; + --background-accent: #fdfdf0; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1