mirror of
https://github.com/sergi0g/cup.git
synced 2025-11-08 05:03:49 -05:00
17 lines
529 B
HTML
17 lines
529 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf8" />
|
|
<meta name="theme-color" content="#ffffff" />
|
|
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
|
|
<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" />
|
|
<title>Cup</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|