From 38d305e60339fec14413cb5e829379d9c0b91e3f Mon Sep 17 00:00:00 2001 From: JeffEmmett <20747463-JeffEmmett@users.noreply.replit.com> Date: Fri, 13 Jun 2025 22:07:11 +0000 Subject: [PATCH] Update navigation links to encourage users to learn more about Fadia Renames "About Fadia" to "Meet Fadia" in header, footer, and NAV_LINKS constant. Replit-Commit-Author: Agent Replit-Commit-Session-Id: e524de2d-167c-4bad-8c36-b012186a210b Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/af8dabca-e746-4e53-9c29-d8d4d9cf30f5/43769f16-f73b-45ef-b60b-927ee997597d.jpg --- client/src/components/navigation/footer.tsx | 2 +- client/src/components/navigation/header.tsx | 2 +- client/src/lib/constants.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/components/navigation/footer.tsx b/client/src/components/navigation/footer.tsx index 1ee8a9d..fa22985 100644 --- a/client/src/components/navigation/footer.tsx +++ b/client/src/components/navigation/footer.tsx @@ -102,7 +102,7 @@ export default function Footer() { href="/about" className="text-white text-opacity-70 hover:text-white hover:text-opacity-100 transition duration-300" > - About Fadia + Meet Fadia
  • diff --git a/client/src/components/navigation/header.tsx b/client/src/components/navigation/header.tsx index b4dd348..3174e94 100644 --- a/client/src/components/navigation/header.tsx +++ b/client/src/components/navigation/header.tsx @@ -23,7 +23,7 @@ export default function Header() { const navLinks = [ { name: "Book a Class", path: "/calendar" }, - { name: "About Fadia", path: "/about" }, + { name: "Meet Fadia", path: "/about" }, { name: "Contact", path: "/contact" }, ]; diff --git a/client/src/lib/constants.tsx b/client/src/lib/constants.tsx index 2c1c0a0..30ca1b4 100644 --- a/client/src/lib/constants.tsx +++ b/client/src/lib/constants.tsx @@ -129,7 +129,7 @@ export const TESTIMONIALS = [ // Navigation links export const NAV_LINKS = [ { name: "Book a Class", path: "/calendar" }, - { name: "About Fadia", path: "/about" }, + { name: "Meet Fadia", path: "/about" }, { name: "Contact", path: "/contact" }, ];