import React from 'react'; import { Link } from 'react-router-dom'; import { Facebook, Instagram, Twitter, Youtube, Mail } from 'lucide-react'; export default function Footer() { const currentYear = new Date().getFullYear(); // Get logo and store name from WordPress global const storeLogo = (window as any).woonoowCustomer?.storeLogo; const storeName = (window as any).woonoowCustomer?.storeName || 'My Wordpress Store'; return ( ); }