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..eed1d7f 100644
--- a/components/ClientFocus.tsx
+++ b/components/ClientFocus.tsx
@@ -14,7 +14,7 @@ export function ClientFocus() {
const isDark = theme === "dark";
const ages = [
- "Children (6 to 10)",
+ "Children (0 to 10)",
"Teen",
"Adults",
"Elders (65+)"
@@ -95,7 +95,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}
-
- ))}
-
-
-
-
);