Files
jackboxpartypack-gamepicker/frontend/index.html

38 lines
1.4 KiB
HTML
Raw Normal View History

2025-10-30 04:27:43 -04:00
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Branding -->
2025-10-30 04:27:43 -04:00
<title>Jackbox Game Picker</title>
<meta name="description" content="A web app for managing and picking Jackbox Party Pack games" />
<meta name="keywords" content="jackbox, party pack, game picker, multiplayer games" />
<meta name="author" content="Jackbox Game Picker" />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<!-- Theme color -->
<meta name="theme-color" content="#4F46E5" />
<!-- Open Graph / Social Media -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Jackbox Game Picker" />
<meta property="og:description" content="A web app for managing and picking Jackbox Party Pack games" />
<!-- Prevent flash of unstyled content in dark mode -->
<script>
// Initialize theme before page renders
const theme = localStorage.getItem('theme') ||
(window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light');
document.documentElement.classList.add(theme);
</script>
2025-10-30 04:27:43 -04:00
</head>
<body class="bg-gray-100 dark:bg-gray-900 text-gray-900 dark:text-gray-100 transition-colors">
2025-10-30 04:27:43 -04:00
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>