33 lines
594 B
Text
33 lines
594 B
Text
|
---
|
||
|
export interface Props {
|
||
|
title: string;
|
||
|
}
|
||
|
|
||
|
const { title } = Astro.props;
|
||
|
---
|
||
|
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width" />
|
||
|
<link rel="icon" type="image/ico" href="/favicon.ico" />
|
||
|
<meta name="generator" content={Astro.generator} />
|
||
|
<title>{title}</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<slot />
|
||
|
</body>
|
||
|
</html>
|
||
|
<style is:global>
|
||
|
:root {
|
||
|
--hover-scale: 1.05;
|
||
|
--speed: 50%;
|
||
|
--ease: 50%;
|
||
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||
|
}
|
||
|
body {
|
||
|
background: #3e3e3e;
|
||
|
}
|
||
|
</style>
|