Files
DiscordClone/apps/electron/index.html
Bryan1029384756 9b86970f3e
Some checks failed
Build and Release / build-and-release (push) Failing after 3m4s
Brycord v1.0.35
2026-02-21 16:53:53 -06:00

20 lines
534 B
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>Brycord</title>
</head>
<body>
<script>
(function() {
var t = localStorage.getItem('discord-theme') || 'theme-dark';
document.documentElement.className = t;
})();
</script>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>