48 lines
No EOL
1 KiB
Text
48 lines
No EOL
1 KiB
Text
---
|
|
import "@fontsource/inter";
|
|
import "@fontsource/inter/500.css";
|
|
import "@fontsource/inter/600.css";
|
|
import "@fontsource/inter/700.css";
|
|
import "@fontsource/inter/800.css";
|
|
import "@fontsource/inter/900.css";
|
|
|
|
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" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<meta
|
|
name="description"
|
|
content="The site for Dragons child studios."
|
|
/>
|
|
<title>{title}</title>
|
|
</head>
|
|
<body>
|
|
<slot />
|
|
<style is:global>
|
|
:root {
|
|
--accent: 124, 58, 237;
|
|
--accent-gradient: linear-gradient(
|
|
45deg,
|
|
rgb(var(--accent)),
|
|
#da62c4 30%,
|
|
white 60%
|
|
);
|
|
}
|
|
html {
|
|
font-family: Inter;
|
|
background-color: #26272b;
|
|
overflow-x: hidden;
|
|
scroll-behavior: smooth;
|
|
}
|
|
</style>
|
|
</body>
|
|
</html> |