diff options
author | Linnea Gräf <nea@nea.moe> | 2024-11-17 03:02:24 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-11-17 04:27:36 +0100 |
commit | a1b2a399efd9ff1c8b3b0dfd71b59c7de28728ea (patch) | |
tree | 5ab36193b22554346d26d5aca8198ca4402fd5b8 /web/src/components/Head.astro | |
parent | d26852105463a51d5b71eb70fdaba787f0914030 (diff) | |
download | Firmament-a1b2a399efd9ff1c8b3b0dfd71b59c7de28728ea.tar.gz Firmament-a1b2a399efd9ff1c8b3b0dfd71b59c7de28728ea.tar.bz2 Firmament-a1b2a399efd9ff1c8b3b0dfd71b59c7de28728ea.zip |
feat(web): Add hero image and navbar
Diffstat (limited to 'web/src/components/Head.astro')
-rw-r--r-- | web/src/components/Head.astro | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/web/src/components/Head.astro b/web/src/components/Head.astro deleted file mode 100644 index 2732105..0000000 --- a/web/src/components/Head.astro +++ /dev/null @@ -1,12 +0,0 @@ ---- -export type Props = { - title: string -} ---- -<head lang="en"> - <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.props.title}</title> -</head> |