14 lines
340 B
Plaintext
14 lines
340 B
Plaintext
---
|
|
interface Props {
|
|
title: string;
|
|
}
|
|
const { title } = Astro.props;
|
|
---
|
|
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<link rel="sitemap" href="/sitemap-index.xml" />
|
|
<title>{title}</title>
|