"use client"; import { Instagram, Twitter } from "lucide-react"; import Link from "next/link"; interface StatItemProps { icon: React.ReactNode; label: string; sublabel: string; } function StatItem({ icon, label, sublabel }: StatItemProps) { return (
{icon}

{label}

{sublabel}

); } export default function BottomBar() { return (
{/* Stats Section - Hidden on mobile */}
📸
} label="500+" sublabel="Tamamlanan Çekim" /> 🏢
} label="150+" sublabel="Mutlu Müşteri" /> 🚁} label="Drone" sublabel="Profesyonel Çekim" /> {/* Socials & Scroll Section */}
Bizi Takip Edin
{/* Copyright */}
© {new Date().getFullYear()} Muğla Dijital Medya Ajansı. Tüm hakları saklıdır.
); }