import Link from 'next/link'; import en from '@/i18n/en.json'; import { Instagram, Twitter, Linkedin, Facebook } from 'lucide-react'; import { allUseCases } from '@/lib/growth-pages'; import { industryPages } from '@/lib/industry-pages'; interface FooterProps { variant?: 'marketing' | 'dashboard'; t?: typeof en; // Optional translation object } export function Footer({ variant = 'marketing', t }: FooterProps) { const isDashboard = variant === 'dashboard'; // Fallback to English if no translation is provided or if keys are missing const translations = t?.footer || en.footer; return ( ); }