From a78dfd214790cc4478767714682fd9f886eaec11 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 16:01:46 +0000 Subject: [PATCH 1/6] Update src/app/about/page.tsx --- src/app/about/page.tsx | 157 ++++++++++++++++++++--------------------- 1 file changed, 78 insertions(+), 79 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index e412b84..b146395 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,22 +1,22 @@ "use client"; -import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import FeatureCardTwentyThree from "@/components/sections/feature/FeatureCardTwentyThree"; -import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; -import FooterCard from "@/components/sections/footer/FooterCard"; -import { Instagram, Linkedin, Twitter, Mail } from "lucide-react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; +import TeamCardEleven from '@/components/sections/team/TeamCardEleven'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Instagram, Linkedin, Twitter, Mail, Lightbulb, Users, Target } from "lucide-react"; + +const navItems = [ + { name: "Home", id: "/" }, + { name: "Services", id: "#services-overview" }, + { name: "Portfolio", id: "#portfolio" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, +]; export default function AboutPage() { - const navItems = [ - { name: "Home", id: "home" }, - { name: "Services", id: "services" }, - { name: "Portfolio", id: "portfolio" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" } - ]; - return ( -
-
-
- +
- -
+
+ +
+ +
-
- + +
+ +
+
- -
- + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+
-
- -
- -
+
@@ -160,27 +222,19 @@ export default function ServicesPage() { socialLinks={[ { icon: Instagram, - href: "https://instagram.com/nicktopixels", - ariaLabel: "Follow us on Instagram", - }, + href: "https://instagram.com/nicktopixels", ariaLabel: "Follow us on Instagram"}, { icon: Linkedin, - href: "https://linkedin.com/company/nicktopixels", - ariaLabel: "Connect on LinkedIn", - }, + href: "https://linkedin.com/company/nicktopixels", ariaLabel: "Connect on LinkedIn"}, { icon: Twitter, - href: "https://twitter.com/nicktopixels", - ariaLabel: "Follow us on Twitter", - }, + href: "https://twitter.com/nicktopixels", ariaLabel: "Follow us on Twitter"}, { icon: Mail, - href: "mailto:hello@nicktopixels.ca", - ariaLabel: "Email us", - }, + href: "mailto:hello@nicktopixels.ca", ariaLabel: "Email us"}, ]} />
); -} \ No newline at end of file +} -- 2.49.1 From e8d00cd7b25ae6dfb0ac8e9a79bed7f6f7a99adf Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 16:01:48 +0000 Subject: [PATCH 6/6] Update src/app/styles/variables.css --- src/app/styles/variables.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index d45b6e6..cbdf359 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -13,12 +13,12 @@ --background: #fcf6ec; --card: #f3ede2; --foreground: #2e2521; - --primary-cta: #2e2521; + --primary-cta: #c68a62; --primary-cta-text: #fcf6ec; --secondary-cta: #ffffff; --secondary-cta-text: #2e2521; --accent: #b2a28b; - --background-accent: #b2a28b; + --background-accent: #d4a574; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1