blob: 8be53e0fa26f02b0bb06cc0c09f9acdcbbcd6d62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
---
import '../styles/index.css';
interface Props {
title: string;
description?: string;
}
const {
title,
description = "The personal website of Matthew Kosarek",
} = Astro.props;
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<title>{title}</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href='https://fonts.googleapis.com/css?family=Noto Sans' rel='stylesheet'>
<link href="https://fonts.googleapis.com/css2?family=Audiowide&family=Dancing+Script:wght@400..700&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="/favicon/favicon.ico" type="image/x-icon">
<meta name="description" content={description}>
</head>
<body>
<header>
<nav>
<ul>
<li><a href='/'>🏡 Home</a></li>
<li><a href='/resume'>📘 CV</a></li>
<li><a href='/posts'>📝 Posts</a></li>
</ul>
</nav>
</header>
<slot />
</body>
</html>
|