22 lines
632 B
HTML
22 lines
632 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>VidRip - YouTube Drip Downloader</title>
|
|
<script>
|
|
// Set dark mode before page renders to avoid flash
|
|
if (localStorage.getItem('darkMode') === 'false') {
|
|
document.documentElement.classList.remove('dark');
|
|
} else {
|
|
// Default to dark mode
|
|
document.documentElement.classList.add('dark');
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|