mirror of
https://github.com/artiemis/artie.moe.git
synced 2026-02-14 09:01:55 +00:00
43 lines
1.4 KiB
Plaintext
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>
|