artie.moe/src/layouts/Layout.astro
2023-06-23 12:57:29 +02:00

43 lines
1.4 KiB
Plaintext

---
import sakura from "../assets/sakura.png"
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" />
<title>{title}</title>
<meta name="description" content="a self-taught code archwizard" />
<meta name="author" content="artie">
<meta name="theme-color" content="#fe7d9d" />
<meta property="og:type" content="website">
<meta property="og:site_name" content="artie.moe">
<meta property="og:title" content={title}>
<meta property="og:description" content="a self-taught code archwizard">
<meta property="og:url" content="https://artie.moe/">
<meta property="og:image" content={sakura} />
<link rel="icon" href={sakura} />
<link rel="apple-touch-icon" href={sakura} />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@700&display=swap" rel="stylesheet" />
</head>
<body class="bg-zinc-900 h-screen text-gray-100 flex flex-col justify-center items-center">
<slot />
</body>
</html>
<style is:global></style>