Files
movieloop-frontend/index.html
T
2026-03-09 15:03:08 -07:00

34 lines
1.5 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>You Know Who Else Was In That Movie?</title>
<meta name="description" content="A trivia-puzzle game inspired by Six Degrees of Kevin Bacon. Build a chain of actor-movie connections forming a complete loop between two movies." />
<meta name="theme-color" content="#1e1b30" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="You Know Who Else Was In That Movie?" />
<meta property="og:description" content="Build a chain of actor-movie connections forming a complete loop. Play today's daily challenge!" />
<meta property="og:site_name" content="Movie Loop" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="You Know Who Else Was In That Movie?" />
<meta name="twitter:description" content="Build a chain of actor-movie connections forming a complete loop. Play today's daily challenge!" />
</head>
<body>
<script>
(function() {
var t = localStorage.getItem('theme');
if (t !== 'light' && t !== 'dark') t = 'dark';
if (t === 'dark') document.documentElement.classList.add('dark');
})();
</script>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>