From 042986e5b8cccff095d2fb5fa867e69268e2e623 Mon Sep 17 00:00:00 2001 From: JeffEmmett <20747463-JeffEmmett@users.noreply.replit.com> Date: Fri, 13 Jun 2025 18:16:14 +0000 Subject: [PATCH] Update the main navigation links across the website header for clarity Updates the site's header and NAV_LINKS constant to reflect the new navigation structure. Replit-Commit-Author: Agent Replit-Commit-Session-Id: d004b9e1-f9be-46e2-acda-f440ccd644a9 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/af8dabca-e746-4e53-9c29-d8d4d9cf30f5/be738b47-4912-4603-b9dd-cd5759576138.jpg --- client/src/components/navigation/header.tsx | 6 ++---- client/src/lib/constants.tsx | 5 ++--- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/client/src/components/navigation/header.tsx b/client/src/components/navigation/header.tsx index fd46857..349df05 100644 --- a/client/src/components/navigation/header.tsx +++ b/client/src/components/navigation/header.tsx @@ -22,10 +22,8 @@ export default function Header() { }; const navLinks = [ - { name: "Home", path: "/" }, - { name: "About", path: "/about" }, - { name: "Classes", path: "/classes" }, - { name: "Calendar", path: "/calendar" }, + { name: "Book a Class", path: "/calendar" }, + { name: "About Fadia", path: "/about" }, { name: "Community", path: "/community" }, { name: "Contact", path: "/contact" }, ]; diff --git a/client/src/lib/constants.tsx b/client/src/lib/constants.tsx index 27f87ca..f510ddb 100644 --- a/client/src/lib/constants.tsx +++ b/client/src/lib/constants.tsx @@ -128,9 +128,8 @@ export const TESTIMONIALS = [ // Navigation links export const NAV_LINKS = [ - { name: "Home", path: "/" }, - { name: "About", path: "/about" }, - { name: "Classes", path: "/classes" }, + { name: "Book a Class", path: "/calendar" }, + { name: "About Fadia", path: "/about" }, { name: "Community", path: "/community" }, { name: "Contact", path: "/contact" }, ];