From a5adcf4553ac5d1c72256749c8582046088623a1 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 01:57:23 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 211 ++++++++++++++++++++++++++++++++++++++--- 1 file changed, 198 insertions(+), 13 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 02dfedc..c028a77 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -19,8 +19,7 @@ export default function AboutPage() { const footerColumns = [ { - title: "Navigation", - items: [ + title: "Navigation", items: [ { label: "Home", href: "/" }, { label: "Projects", href: "/projects" }, { label: "Vision", href: "/about" }, @@ -28,8 +27,7 @@ export default function AboutPage() { ], }, { - title: "Connect", - items: [ + title: "Connect", items: [ { label: "Twitter", href: "https://twitter.com" }, { label: "LinkedIn", href: "https://linkedin.com" }, { label: "Instagram", href: "https://instagram.com" }, @@ -37,8 +35,7 @@ export default function AboutPage() { ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Newsletter", href: "#" }, { label: "Blog", href: "/writing" }, { label: "Privacy", href: "#" }, @@ -60,6 +57,76 @@ export default function AboutPage() { secondaryButtonStyle="layered" headingFontWeight="light" > + + + + + + + +
+ + + +
+ + + +
+ + ); -} \ No newline at end of file +} -- 2.49.1 From aeda16098aa54f35f75e6e0906bd9f7d1a0ee8ee Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 01:57:24 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 207 +++++++++++++++++++++++++++++++++++++-- 1 file changed, 197 insertions(+), 10 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 169264e..0efd9c1 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -19,8 +19,7 @@ export default function ContactPage() { const footerColumns = [ { - title: "Navigation", - items: [ + title: "Navigation", items: [ { label: "Home", href: "/" }, { label: "Projects", href: "/projects" }, { label: "Vision", href: "/about" }, @@ -28,8 +27,7 @@ export default function ContactPage() { ], }, { - title: "Connect", - items: [ + title: "Connect", items: [ { label: "Twitter", href: "https://twitter.com" }, { label: "LinkedIn", href: "https://linkedin.com" }, { label: "Instagram", href: "https://instagram.com" }, @@ -37,8 +35,7 @@ export default function ContactPage() { ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Newsletter", href: "#" }, { label: "Blog", href: "/writing" }, { label: "Privacy", href: "#" }, @@ -60,6 +57,76 @@ export default function ContactPage() { secondaryButtonStyle="layered" headingFontWeight="light" > + + + + + + + +
+ + + +
+ + + +
+ + ); -} \ No newline at end of file +} -- 2.49.1 From 900060b549861d0b7378ae3a06fc40abdb5c5cdf Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 01:57:24 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 31 ++++++++----------------------- 1 file changed, 8 insertions(+), 23 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 387b99f..4611629 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,40 +6,25 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); const openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], + variable: "--font-open-sans", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Building Ideas Into Reality | Creative Portfolio", - description: "A collection of projects, thoughts, and creative vision. Explore work across design, digital experience, and strategic direction.", - keywords: "portfolio, creative design, digital experience, brand strategy, visual storytelling", - metadataBase: new URL("https://portfolio.example.com"), + title: "Building Ideas Into Reality | Creative Portfolio", description: "A collection of projects, thoughts, and creative vision. Explore work across design, digital experience, and strategic direction.", keywords: "portfolio, creative design, digital experience, brand strategy, visual storytelling", metadataBase: new URL("https://portfolio.example.com"), alternates: { - canonical: "https://portfolio.example.com", - }, + canonical: "https://portfolio.example.com"}, openGraph: { - title: "Building Ideas Into Reality", - description: "Creative portfolio showcasing intentional design and strategic vision.", - type: "website", - siteName: "Portfolio", - images: [ + title: "Building Ideas Into Reality", description: "Creative portfolio showcasing intentional design and strategic vision.", type: "website", siteName: "Portfolio", images: [ { - url: "http://img.b2bpic.net/free-psd/acting-agency-template-landing-page_23-2148797778.jpg", - alt: "Portfolio showcase", - }, + url: "http://img.b2bpic.net/free-psd/acting-agency-template-landing-page_23-2148797778.jpg", alt: "Portfolio showcase"}, ], }, twitter: { - card: "summary_large_image", - title: "Building Ideas Into Reality", - description: "Creative portfolio with intentional design and vision.", - images: ["http://img.b2bpic.net/free-psd/acting-agency-template-landing-page_23-2148797778.jpg"], + card: "summary_large_image", title: "Building Ideas Into Reality", description: "Creative portfolio with intentional design and vision.", images: ["http://img.b2bpic.net/free-psd/acting-agency-template-landing-page_23-2148797778.jpg"], }, }; @@ -1427,4 +1412,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} -- 2.49.1 From 0d1c6d372086b6dccf5b9859947d7437173f358e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 01:57:25 +0000 Subject: [PATCH 4/5] Update src/app/page.tsx --- src/app/page.tsx | 373 ++++++++++++++++++++++++++++++++++++----------- 1 file changed, 291 insertions(+), 82 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4a3c54f..9569756 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -22,8 +22,7 @@ export default function HomePage() { const footerColumns = [ { - title: "Navigation", - items: [ + title: "Navigation", items: [ { label: "Home", href: "/" }, { label: "Projects", href: "/projects" }, { label: "Vision", href: "/about" }, @@ -31,8 +30,7 @@ export default function HomePage() { ], }, { - title: "Connect", - items: [ + title: "Connect", items: [ { label: "Twitter", href: "https://twitter.com" }, { label: "LinkedIn", href: "https://linkedin.com" }, { label: "Instagram", href: "https://instagram.com" }, @@ -40,8 +38,7 @@ export default function HomePage() { ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Newsletter", href: "#" }, { label: "Blog", href: "/writing" }, { label: "Privacy", href: "#" }, @@ -63,6 +60,76 @@ export default function HomePage() { secondaryButtonStyle="layered" headingFontWeight="light" > + + + + -
- + + + +
+
+ +
+ + + +
-
- + + + +
+
+ +
+ + + +
+ + + +
+ + + +
+ + ); -} \ No newline at end of file +} -- 2.49.1 From d0d9539549189765ffc285cacae5c4e474b6c429 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 01:57:26 +0000 Subject: [PATCH 5/5] Update src/app/projects/page.tsx --- src/app/projects/page.tsx | 274 ++++++++++++++++++++++++++++++-------- 1 file changed, 221 insertions(+), 53 deletions(-) diff --git a/src/app/projects/page.tsx b/src/app/projects/page.tsx index 61d5442..ee447bb 100644 --- a/src/app/projects/page.tsx +++ b/src/app/projects/page.tsx @@ -19,8 +19,7 @@ export default function ProjectsPage() { const footerColumns = [ { - title: "Navigation", - items: [ + title: "Navigation", items: [ { label: "Home", href: "/" }, { label: "Projects", href: "/projects" }, { label: "Vision", href: "/about" }, @@ -28,8 +27,7 @@ export default function ProjectsPage() { ], }, { - title: "Connect", - items: [ + title: "Connect", items: [ { label: "Twitter", href: "https://twitter.com" }, { label: "LinkedIn", href: "https://linkedin.com" }, { label: "Instagram", href: "https://instagram.com" }, @@ -37,8 +35,7 @@ export default function ProjectsPage() { ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Newsletter", href: "#" }, { label: "Blog", href: "/writing" }, { label: "Privacy", href: "#" }, @@ -60,6 +57,76 @@ export default function ProjectsPage() { secondaryButtonStyle="layered" headingFontWeight="light" > + + + + -