18 Zeilen
388 B
Plaintext
18 Zeilen
388 B
Plaintext
|
---
|
||
|
import { t } from "astro-i18n";
|
||
|
import * as Icon from '@astropub/icons';
|
||
|
---
|
||
|
|
||
|
<html lang="en">
|
||
|
<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} />
|
||
|
<title>Astro</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>{t("hello")}</h1>
|
||
|
</body>
|
||
|
</html>
|