From 9223de3db0e157137ae47f1356af18767e5c014c Mon Sep 17 00:00:00 2001 From: Nathan Totten Date: Fri, 29 May 2026 16:54:59 -0400 Subject: [PATCH] Use Zudoku button styling for header Login/Sign Up, rename Sign in to Login Revert the header CTAs to the standard Zudoku `Button` styling (ghost "Login" + solid "Start for Free") instead of the custom marketing-site treatment, and rename the "Sign in" button to "Login". The working `slots` / `head-navigation-end` wiring from the prior change is kept, so the buttons still render in the header. Co-Authored-By: Claude Opus 4.8 (1M context) --- src/components/HeadNavigation.tsx | 23 ++++++++--------------- 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/src/components/HeadNavigation.tsx b/src/components/HeadNavigation.tsx index 81933aa2..8fd2a55a 100644 --- a/src/components/HeadNavigation.tsx +++ b/src/components/HeadNavigation.tsx @@ -1,22 +1,15 @@ import React from "react"; +import { Button } from "zudoku/components"; -// Styled to match the Zuplo marketing site navbar (~/zuplo/www): -// a pink "Login" text link plus a dark rounded "Sign Up" pill button. export const HeadNavigation = () => { return ( -
- - Login - - - Sign Up - +
+ +
); };