mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-26 19:12:50 +00:00
20 lines
592 B
HTML
20 lines
592 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>EMA Portal</title>
|
|
<script>
|
|
// Apply the saved Mantine color scheme before paint to avoid a flash.
|
|
try {
|
|
var s = localStorage.getItem('mantine-color-scheme-value') || 'light';
|
|
document.documentElement.setAttribute('data-mantine-color-scheme', s);
|
|
} catch (e) {}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|