From 2608c7a146e374091b2323831cdb406d5c5ff3ab Mon Sep 17 00:00:00 2001 From: Mannu Date: Sun, 31 May 2026 12:07:01 +0530 Subject: [PATCH] fix(marketing): hero subtitle readable, footer links distinct from headings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Homepage hero subtitle: - Remove font-light (was hard to read on gradient bg) - Change text-gray-500 → text-gray-800 (dark, legible) - Keep font-newsreader and leading-relaxed Footer: - Brand tagline → font-newsreader - All footer links → font-normal text-gray-500 (explicit weight prevents Fraunces from blending with semibold headings at gray-700) - globals.css: pin .text-gray-500 { color: var(--color-gray-500) } so links read clearly lighter than Company/Legal/Contact headings Co-Authored-By: Claude Sonnet 4.6 --- src/app/(marketing)/layout.tsx | 18 +++++++++--------- src/app/(marketing)/page.tsx | 2 +- src/app/globals.css | 3 +++ 3 files changed, 13 insertions(+), 10 deletions(-) diff --git a/src/app/(marketing)/layout.tsx b/src/app/(marketing)/layout.tsx index 94e8375..ea34fbb 100644 --- a/src/app/(marketing)/layout.tsx +++ b/src/app/(marketing)/layout.tsx @@ -71,7 +71,7 @@ export default function MarketingLayout({ Tia -

+

A digital heirloom for your baby.
Every moment, preserved — privately.

@@ -82,17 +82,17 @@ export default function MarketingLayout({ {/* Company */}

Company

- About - Blog - Partners + About + Blog + Partners
{/* Legal */}

Legal

- Pricing - Privacy Policy - Terms of Service + Pricing + Privacy Policy + Terms of Service
{/* Contact */} @@ -100,13 +100,13 @@ export default function MarketingLayout({

Contact

+91 95548 81799 hello@tia.baby diff --git a/src/app/(marketing)/page.tsx b/src/app/(marketing)/page.tsx index a70866c..a05d66a 100644 --- a/src/app/(marketing)/page.tsx +++ b/src/app/(marketing)/page.tsx @@ -66,7 +66,7 @@ function Hero() { -

+

Tia is a digital heirloom — not just a tracker. Every feed, every first word, every vaccination, archived in one private place your child will one day look back on. diff --git a/src/app/globals.css b/src/app/globals.css index abf83d0..1c1f756 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -61,6 +61,9 @@ .font-newsreader { font-family: var(--font-newsreader, Georgia, serif); } .font-jetbrains { font-family: var(--font-jetbrains, ui-monospace, monospace); } +/* Explicit pin so footer links read clearly lighter than their headings */ +.text-gray-500 { color: var(--color-gray-500); } + /* hide scrollbar but keep scroll */ .scrollbar-hide { scrollbar-width: none;