From bb661d12fd9d00692ee60a601f8b7c88814e3118 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 22 May 2026 18:11:36 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 29 +++++++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c4a1a45..84706d8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -151,16 +151,37 @@ export default function LandingPage() { logoText="Threads Boutique" columns={[ { - title: "Navigation", items: [{ label: "Home", href: "#hero" }, { label: "About", href: "#about" }, { label: "Shop", href: "#products" }], + title: "Company", items: [ + { label: "About Us", href: "#about" }, + { label: "Our Values", href: "#about" }, + { label: "Careers", href: "#contact" } + ], }, { - title: "Support", items: [{ label: "Contact", href: "#contact" }, { label: "Directions", href: "https://maps.google.com" }], + title: "Navigation", items: [ + { label: "Home", href: "#hero" }, + { label: "Shop Catalog", href: "#products" }, + { label: "Reviews", href: "#testimonials" } + ], }, + { + title: "Customer Support", items: [ + { label: "Contact Support", href: "#contact" }, + { label: "Location & Hours", href: "#contact" }, + { label: "FAQs", href: "#faq" } + ], + }, + { + title: "Legal", items: [ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" } + ], + } ]} - copyrightText="© 2025 Threads Boutique" + copyrightText="© 2025 Threads Boutique. All rights reserved." /> ); -} +} \ No newline at end of file -- 2.49.1 From 0ababc9efa207d3211022cc2f3eba3a86d22f027 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 22 May 2026 18:11:37 +0000 Subject: [PATCH 2/2] 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 b7afc67..c9d22de 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f5f4ef; - --card: #dad6cd; - --foreground: #2a2928; - --primary-cta: #2a2928; + --background: #f7f6f7; + --card: #ffffff; + --foreground: #1b0c25; + --primary-cta: #1b0c25; --primary-cta-text: #f5f4ef; - --secondary-cta: #ecebea; + --secondary-cta: #ffffff; --secondary-cta-text: #2a2928; - --accent: #ffffff; - --background-accent: #c6b180; + --accent: #ff93e4; + --background-accent: #e8a8c3; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1