From 453ce68a66472e399743faceb88fa3fecf0b0187 Mon Sep 17 00:00:00 2001 From: iamkiddy Date: Sun, 23 Nov 2025 13:46:33 +0000 Subject: [PATCH] Update contact information across multiple components, including phone numbers and location details, to reflect new business contact. Rename section in ClientFocus component for clarity. --- app/(pages)/book-now/page.tsx | 4 +- components/ClientFocus.tsx | 3 +- components/Footer.tsx | 4 +- components/Location.tsx | 117 ++-------------------------------- 4 files changed, 10 insertions(+), 118 deletions(-) diff --git a/app/(pages)/book-now/page.tsx b/app/(pages)/book-now/page.tsx index 7784c7d..07e50e0 100644 --- a/app/(pages)/book-now/page.tsx +++ b/app/(pages)/book-now/page.tsx @@ -653,10 +653,10 @@ export default function BookNowPage() {

Prefer to book by phone?{" "} - Call us at (954) 807-3027 + Call us at (754) 816-2311

diff --git a/components/ClientFocus.tsx b/components/ClientFocus.tsx index 16e56ac..fc674d7 100644 --- a/components/ClientFocus.tsx +++ b/components/ClientFocus.tsx @@ -14,6 +14,7 @@ export function ClientFocus() { const isDark = theme === "dark"; const ages = [ + "Children (0 to 10)", "Children (6 to 10)", "Teen", "Adults", @@ -95,7 +96,7 @@ export function ClientFocus() { animate={isInView ? { opacity: 1, y: 0 } : {}} transition={{ duration: 0.8, delay: 0.2 }} > - Who We Serve + Who I work with diff --git a/components/Footer.tsx b/components/Footer.tsx index 81812bd..8426259 100644 --- a/components/Footer.tsx +++ b/components/Footer.tsx @@ -98,10 +98,10 @@ export function Footer() {
  • - (954) 807-3027 + (754) 816-2311
  • diff --git a/components/Location.tsx b/components/Location.tsx index 3452400..a089aa1 100644 --- a/components/Location.tsx +++ b/components/Location.tsx @@ -12,32 +12,6 @@ export function Location() { const { theme } = useAppTheme(); const isDark = theme === "dark"; - const cities = [ - "Hollywood, FL", - "Jacksonville, FL", - "Miami, FL", - "Pensacola, FL" - ]; - - const counties = [ - "Broward", - "Duval", - "Escambia", - "Miami-dade" - ]; - - const zips = [ - "32256", - "32503", - "33021", - "33145" - ]; - - const neighborhoods = [ - "Coral Gate", - "Coral Way", - "Royal Lakes" - ]; return (

    Primary Location

    -

    Miami, FL 33145

    +

    Hollywood, FL

    - (954) 807-3027 + (754) 816-2311
    @@ -152,97 +126,14 @@ export function Location() {

    Additional Location

    -

    Hollywood, FL 33021

    +

    South Miami, FL

    - (954) 807-3027 + (754) 816-2311
    - {/* Nearby Areas */} - -

    Nearby Areas

    - -
    - {/* Cities */} -
    -

    Cities

    -
      - {cities.map((city, index) => ( - - {city} - - ))} -
    -
    - - {/* Counties */} -
    -

    Counties

    -
      - {counties.map((county, index) => ( - - {county} - - ))} -
    -
    - - {/* Zips */} -
    -

    Zips

    -
      - {zips.map((zip, index) => ( - - {zip} - - ))} -
    -
    - - {/* Neighborhoods */} -
    -

    Neighborhoods

    -
      - {neighborhoods.map((neighborhood, index) => ( - - {neighborhood} - - ))} -
    -
    -
    -
    );