"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 (
);
}
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 */}
{/* Copyright */}
© {new Date().getFullYear()} Muğla Dijital Medya Ajansı. Tüm hakları saklıdır.
);
}