mirror of
https://github.com/thiloho/aurora.git
synced 2025-11-22 19:41:35 +01:00
15 lines
435 B
Plaintext
15 lines
435 B
Plaintext
|
|
---
|
||
|
|
const { title, description } = Astro.props;
|
||
|
|
---
|
||
|
|
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8" />
|
||
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||
|
|
<meta name="viewport" content="width=device-width" />
|
||
|
|
<meta name="generator" content={Astro.generator} />
|
||
|
|
<meta name="color-scheme" content="light">
|
||
|
|
<title>{title}</title>
|
||
|
|
<meta name="author" content="Your Name" />
|
||
|
|
<meta name="description" content={description} />
|
||
|
|
</head>
|