23 lines
611 B
HTML
23 lines
611 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>CodeNomad</title>
|
|
<script>
|
|
;(function () {
|
|
try {
|
|
document.documentElement.setAttribute('data-theme', 'dark')
|
|
} catch (error) {
|
|
const rawConsole = globalThis?.["console"]
|
|
rawConsole?.warn?.('Failed to apply initial theme', error)
|
|
}
|
|
})()
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="loading-root"></div>
|
|
<script type="module" src="./loading/main.tsx"></script>
|
|
</body>
|
|
</html>
|