gameflow-deck/src/mainview/index.html
Simeon Radivoev a78e75335f
feat First implementation of plugins system
feat: Added PCSX2 integration
feat: Revamped UI a bit made it look better on light mode
2026-03-25 21:51:10 +02:00

24 lines
903 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="./index.tsx"></script>
<div id="root"></div>
</body>
</html>