feat: add romhack archive site
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
---
|
||||
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/type/difficulty/">Difficulty</a>
|
||||
<a href="/browse/platform/gba/">GBA</a>
|
||||
<a href="/queue/">Play Queue</a>
|
||||
</nav>
|
||||
</header>
|
||||
<main>
|
||||
<slot />
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user