Files
romhack-archive-site/src/components/Layout.astro
T

40 lines
982 B
Plaintext

---
interface Props {
title?: string;
description?: string;
}
const {
title = 'ROM Hack Archive',
description = 'Private Pokémon ROM-hack catalog for browsing hacks, notes, files, guides, and play status.',
} = Astro.props;
---
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content={description} />
<title>{title}</title>
<link rel="stylesheet" href="/styles/global.css" />
</head>
<body>
<div class="crt"></div>
<header class="site-header">
<a class="brand" href="/">
<span class="brand-mark" aria-hidden="true"></span>
<span>ROM Hack Archive</span>
</a>
<nav aria-label="Primary navigation">
<a href="/">Catalog</a>
<a href="/#browse">Browse</a>
<a href="/queue/">Play Queue</a>
</nav>
</header>
<main>
<slot />
</main>
</body>
</html>