website/src/layouts/Layout.astro

30 lines
555 B
Text
Raw Normal View History

2024-11-15 15:42:28 +04:00
---
interface Props {
title: string;
}
const { title } = Astro.props;
---
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Astro description" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="generator" content={Astro.generator} />
<title>{title}</title>
</head>
<body>
<slot />
</body>
</html>
<style is:global>
html {
2024-11-16 14:11:04 +04:00
font-family: monospace;
2024-12-01 12:40:41 +04:00
background: #101010;
color: white;
2024-11-15 15:42:28 +04:00
}
</style>