2026-05-15 18:38:11 +02:00
|
|
|
---
|
|
|
|
|
import '../styles/index.scss';
|
|
|
|
|
---
|
|
|
|
|
|
2026-05-15 17:03:59 +02:00
|
|
|
<!doctype html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width" />
|
|
|
|
|
<link rel="icon" href="/favicon.ico" />
|
|
|
|
|
<meta name="generator" content={Astro.generator} />
|
2026-05-15 18:38:11 +02:00
|
|
|
<title>Nova Design System</title>
|
2026-05-15 17:03:59 +02:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<slot />
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
html,
|
|
|
|
|
body {
|
|
|
|
|
margin: 0;
|
|
|
|
|
width: 100%;
|
2026-05-15 18:38:11 +02:00
|
|
|
min-height: 100%;
|
|
|
|
|
font-family: var(--nds-font-family-base);
|
|
|
|
|
background-color: var(--nds-page-low);
|
|
|
|
|
color: var(--nds-default);
|
2026-05-15 17:03:59 +02:00
|
|
|
}
|
|
|
|
|
</style>
|