Lightdark
WHATSAPP

Get to know me and my projects! I’m available to chat and answer any questions. Reach out directly via WhatsApp +39 392 691 96 40 I’d love to connect and explore new opportunities together.

© 2024. DESIGN AND CONCEPT

DESIGNER- ART DIRECTOR – AUDIOVISUAL PRODUCER  //  P.IVA: 10108011213

testQR

// Carrito en JavaScript (no requiere base de datos) let carrito = [];function agregarProducto(producto, precio) { carrito.push({producto, precio}); actualizarResumen(); }function generarMensajeWhatsApp(mesa, nombre) { let mensaje = `🍔 PEDIDO - Mesa ${mesa}, ${nombre}\n\n`; let total = 0; carrito.forEach(item => { mensaje += `• ${item.producto}: $${item.precio}\n`; total += item.precio; }); mensaje += `\n💰 TOTAL: $${total}`; return mensaje; }function enviarWhatsApp(numeroRestaurante, mesa, nombre) { let mensaje = generarMensajeWhatsApp(mesa, nombre); let url = `https://wa.me/${numeroRestaurante}?text=${encodeURIComponent(mensaje)}`; window.open(url, '_blank'); }
en_US