feat: Moved romm to internal plugin fix: Made focusing and navigation more reliable fix: Loading errors on first time launch
26 lines
988 B
HTML
26 lines
988 B
HTML
<!doctype html>
|
|
<html data-theme="dark" lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="description" content="Retro Game Launcher" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<link rel="apple-touch-icon" href="/256x256.png" sizes="320x320" />
|
|
<link rel="mask-icon" href="/icon.svg" color="#1d232a" />
|
|
<meta name="theme-color" content="#605dff" />
|
|
<link rel="manifest" href="./manifest.json" />
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Alan+Sans:wght@300..900&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<title>GameFlow</title>
|
|
</head>
|
|
<body>
|
|
<script type="module" src="./preload.tsx"></script>
|
|
<script type="module" src="./index.tsx"></script>
|
|
<div id="preload"></div>
|
|
<div id="root"></div>
|
|
</body>
|
|
</html>
|