summaryrefslogtreecommitdiff
path: root/src/components/Head.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Head.astro')
-rw-r--r--src/components/Head.astro31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/components/Head.astro b/src/components/Head.astro
deleted file mode 100644
index f05e862..0000000
--- a/src/components/Head.astro
+++ /dev/null
@@ -1,31 +0,0 @@
----
-import "@fontsource-variable/noto-sans";
-import "@fontsource/noto-sans-mono";
-const { title, description } = Astro.props;
----
-
-<head>
- <meta charset="UTF-8" />
- <title>{title}</title>
- <meta name="viewport" content="width=device-width,initial-scale=1" />
- <meta name="description" content={description} />
- <link rel="sitemap" href="/sitemap-index.xm" />
-</head>
-<style is:global>
- a {
- text-decoration: underline;
- @apply text-blue;
- }
-
- h1 {
- @apply text-3xl md:text-4xl;
- }
-
- h2 {
- @apply text-2xl md:text-3xl;
- }
-
- h3 {
- @apply text-xl md:text-2xl;
- }
-</style>