From 5254d6c7549c051b769ade3662c52fc971ad3906 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 02:30:09 +0000 Subject: [PATCH 1/3] Add src/app/about/page.tsx --- src/app/about/page.tsx | 155 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 155 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..fe70a09 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,155 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import HeroLogo from "@/components/sections/hero/HeroLogo"; +import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; +import FeatureCardTen from "@/components/sections/feature/FeatureCardTen"; +import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; +import { Zap, Target, Sparkles } from "lucide-react"; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1 From 9d7e5dbc2b888d62a321ef204ed522a05b51291a Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 02:30:09 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 23862a7..f9200cc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -14,7 +14,7 @@ import { Award, Code, CreditCard, Gauge, Lock, Palette, Quote, ShoppingCart, Sma export default function LandingPage() { return ( Date: Sun, 8 Mar 2026 02:30:10 +0000 Subject: [PATCH 3/3] 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 c1f247d..ff74857 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #ffffff; - --card: #f9f9f9; - --foreground: #120006e6; - --primary-cta: #e63946; + --background: #1a1a1a; + --card: #2d2d2d; + --foreground: #ffffff; + --primary-cta: #00ff00; --primary-cta-text: #ffffff; - --secondary-cta: #f9f9f9; + --secondary-cta: #2d2d2d; --secondary-cta-text: #120006e6; - --accent: #e2e2e2; - --background-accent: #e2e2e2; + --accent: #00ff00; + --background-accent: #1a1a1a; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1