'use client'; import { motion } from "framer-motion"; import { useInView } from "framer-motion"; import { useRef } from "react"; import { MapPin, Phone, Building2 } from "lucide-react"; import { useAppTheme } from "@/components/ThemeProvider"; export function Location() { const ref = useRef(null); const isInView = useInView(ref, { once: true, margin: "-100px" }); const { theme } = useAppTheme(); const isDark = theme === "dark"; return (
{/* Background Image */}
{/* Minimal overlay - allowing background image to show at near original opaqueness */}
{/* Very subtle gradient overlay */} {!isDark && (
)} {isDark && (
)} {/* Subtle animated blobs */}
Location
{/* Primary Location */}

Primary Location

Hollywood, FL

(754) 816-2311
{/* Additional Location */}

Additional Location

South Miami, FL

(754) 816-2311
); }