// Milfers · Footer · big CTA + grid const MAPS_DIR_URL = 'https://www.google.com/maps/dir//Milfers+Burgers+%7C+Hamburguesas+Valencia,+C%2F+de+Carles+Cervera,+8,+Ensanche,+46004+Val%C3%A8ncia,+Valencia,+Espa%C3%B1a/@39.4631463,-0.3750012,16z/data=!4m17!1m7!3m6!1s0xd6049c84c912389:0xce4a4982900a9255!2sMilfers+Burgers+%7C+Hamburguesas+Valencia!8m2!3d39.4631422!4d-0.3724263!16s%2Fg%2F11kb9gxdg3!4m8!1m0!1m5!1m1!1s0xd6049c84c912389:0xce4a4982900a9255!2m2!1d-0.3724263!2d39.4631422!3e2'; // Parsea "Lunes · cerrado" → { day: 'Lunes', time: 'cerrado' } function parseHour(str) { const i = str.indexOf(' · '); if (i === -1) return { day: str, time: '' }; return { day: str.slice(0, i), time: str.slice(i + 3) }; } function Footer() { const hrs = [ window.t('footer.mon'), window.t('footer.tue'), window.t('footer.fri'), window.t('footer.sat'), window.t('footer.sun'), ].map(parseHour); return ( ); } window.Footer = Footer;