2026-05-15 18:38:11 +02:00
|
|
|
---
|
|
|
|
|
import '../styles/index.scss';
|
2026-06-23 10:51:40 +02:00
|
|
|
interface Props { title?: string; }
|
|
|
|
|
const { title = 'Nova Design System' } = Astro.props;
|
2026-05-15 18:38:11 +02:00
|
|
|
---
|
2026-05-15 17:03:59 +02:00
|
|
|
<!doctype html>
|
2026-06-23 10:51:40 +02:00
|
|
|
<html lang="en" data-theme="dark">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
|
<meta name="generator" content={Astro.generator} />
|
|
|
|
|
<title>{title}</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<slot />
|
|
|
|
|
</body>
|
2026-05-15 17:03:59 +02:00
|
|
|
</html>
|