Files
planilla/ui/index.html
josedario87 421ff236ae
Some checks failed
build-and-deploy / filter (push) Successful in 4s
build-and-deploy / build (push) Failing after 19s
build-and-deploy / deploy (push) Has been skipped
avances poderosos en ui
2025-05-25 08:21:57 -06:00

17 lines
670 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!doctype html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#0d9488" /> <!-- color principal de la app -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<title>Núcleo App</title>
<!-- Si luego querés PWA, activá el manifest -->
<!-- <link rel="manifest" href="/manifest.webmanifest" /> -->
</head>
<body class="min-h-screen flex flex-col bg-gray-100 text-gray-900 antialiased">
<div id="app" class="flex-1 flex flex-col"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>