diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index c028a77..9368b14 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,43 +1,41 @@ "use client"; -import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; -import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; -import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; export default function AboutPage() { const navItems = [ { name: "Home", id: "/" }, - { name: "Projects", id: "/projects" }, + { name: "Explore My Works", id: "/explore" }, { name: "Vision", id: "/about" }, { name: "Connect", id: "/connect" }, - { name: "Writing", id: "/writing" }, + { name: "Thoughts", id: "/thoughts" }, ]; const footerColumns = [ { title: "Navigation", items: [ { label: "Home", href: "/" }, - { label: "Projects", href: "/projects" }, + { label: "Explore My Works", href: "/explore" }, { label: "Vision", href: "/about" }, { label: "Contact", href: "/contact" }, ], }, { title: "Connect", items: [ - { label: "Twitter", href: "https://twitter.com" }, - { label: "LinkedIn", href: "https://linkedin.com" }, - { label: "Instagram", href: "https://instagram.com" }, + { label: "Calendly", href: "https://calendly.com/karu-navolab/growth-engine-demo-navo-lab" }, + { label: "Substack", href: "https://substack.com/@karuthompson" }, + { label: "X", href: "https://x.com/KaruThompson" }, { label: "Email", href: "mailto:hello@example.com" }, ], }, { title: "Resources", items: [ { label: "Newsletter", href: "#" }, - { label: "Blog", href: "/writing" }, + { label: "Thoughts", href: "/thoughts" }, { label: "Privacy", href: "#" }, { label: "Terms", href: "#" }, ], @@ -57,252 +55,49 @@ export default function AboutPage() { secondaryButtonStyle="layered" headingFontWeight="light" > - - - - - - - - -
+
intentional design to create meaningful connections between ideas, people, and experiences. Every project I undertake reflects a commitment to aesthetic sophistication paired with strategic clarity.", "My work spans creative direction, digital experience design, business strategy, and cultural storytelling. At the core is a belief that creativity without purpose is decoration, and strategy without artistry is mechanical. The most compelling work emerges when these forces are in balance." + ]} + useInvertedBackground={true} showBorder={true} - buttons={[{ text: "Explore My Work", href: "/projects" }]} + buttons={[{ text: "Explore My Works", href: "/explore" }]} buttonAnimation="blur-reveal" />
- - - - -
- +
- - - - -
- -
- - - ); }