New Files

This commit is contained in:
Firq 2023-01-15 17:53:19 +01:00
parent 91feb849fa
commit b62ede67d4
Signed by: Firq
GPG key ID: 4DE1059A4666E89F
63 changed files with 9798 additions and 0 deletions
src/layouts

32
src/layouts/Layout.astro Normal file
View file

@ -0,0 +1,32 @@
---
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>