From af0dad6922fe958a5a2c695c9fdcb5b3ce79184c Mon Sep 17 00:00:00 2001 From: Mannu Date: Sun, 31 May 2026 11:52:16 +0530 Subject: [PATCH] fix(marketing): Newsreader hero subtitle, Fraunces nav+footer links MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Hero subtitle paragraph → font-newsreader (warm reading serif) - Nav About/Blog links → font-fraunces (via navLinkClass base string) - Footer column headings (Company/Legal/Contact) → font-fraunces - Footer all links and contact details → font-fraunces Co-Authored-By: Claude Sonnet 4.6 --- src/app/(marketing)/layout.tsx | 22 +++++++++++----------- src/app/(marketing)/page.tsx | 2 +- src/components/marketing/MarketingNav.tsx | 2 +- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/app/(marketing)/layout.tsx b/src/app/(marketing)/layout.tsx index b42ecbc..94e8375 100644 --- a/src/app/(marketing)/layout.tsx +++ b/src/app/(marketing)/layout.tsx @@ -81,32 +81,32 @@ export default function MarketingLayout({ {/* Company */}
-

Company

- About - Blog - Partners +

Company

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

Legal

- Pricing - Privacy Policy - Terms of Service +

Legal

+ Pricing + Privacy Policy + Terms of Service
{/* Contact */}
-

Contact

+

Contact

+91 95548 81799 hello@tia.baby diff --git a/src/app/(marketing)/page.tsx b/src/app/(marketing)/page.tsx index 1224a18..a70866c 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/components/marketing/MarketingNav.tsx b/src/components/marketing/MarketingNav.tsx index 6691de4..bdc5b83 100644 --- a/src/components/marketing/MarketingNav.tsx +++ b/src/components/marketing/MarketingNav.tsx @@ -7,7 +7,7 @@ import { NavAuthButton } from "./NavAuthButton"; function navLinkClass(pathname: string, href: string) { const isActive = pathname === href || pathname.startsWith(href + "/"); // border-transparent always reserves the border space → no layout shift on hover - const base = "text-sm px-3 py-1.5 rounded-full border transition-all duration-150"; + const base = "font-fraunces text-sm px-3 py-1.5 rounded-full border transition-all duration-150"; return isActive ? `${base} font-medium text-rose-600 border-transparent` : `${base} font-normal text-gray-600 border-transparent hover:border-rose-300 hover:bg-rose-50 hover:text-rose-500`;