Files
DiscordClone/apps/electron/index.html
Bryan1029384756 fe869a3222
Some checks failed
Build and Release / build-and-release (push) Failing after 3m28s
feat: Add new emoji assets and an UpdateBanner component.
2026-02-13 12:20:40 -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>discord</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>