mirror of
https://github.com/rommapp/romm.git
synced 2026-02-18 00:27:41 +01:00
22 lines
832 B
HTML
22 lines
832 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
|
|
<link rel="manifest" href="/site.webmanifest" />
|
|
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#9205f2" />
|
|
<meta name="msapplication-TileColor" content="#9205f2" />
|
|
<meta name="theme-color" content="#2a0145" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>RomM</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app" />
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|