import React from "react"; import { clsx } from "clsx"; interface StarterFooterProps { companyName?: string; description?: string; links?: { label: string; href: string; }[]; socialLinks?: { platform: string; href: string; icon?: string; }[]; className?: string; theme?: { primaryColor?: string; secondaryColor?: string; fontFamily?: string; }; } export function StarterFooter({ companyName = "AgentC", description = "비즈니스를 위한 완벽한 솔루션을 제공합니다.", links = [ { label: "서비스", href: "#services" }, { label: "회사소개", href: "#about" }, { label: "연락처", href: "#contact" }, ], socialLinks = [], className, theme = {}, }: StarterFooterProps) { const currentYear = new Date().getFullYear(); return ( ); }