Files
amigos-app/index.html
josedario87 9043760fe4
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 23s
Agregar iconos y mejorar configuración HTML
2025-10-17 05:45:11 -06:00

16 lines
476 B
HTML

<!doctype html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#00DC82" />
<title>Amigos App</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>