diff options
| author | seth <[email protected]> | 2023-05-24 06:17:46 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-05-24 06:17:46 -0400 |
| commit | e23620d10a5fb27f613e5b71cb0627fb1c4076b3 (patch) | |
| tree | 4b131eda41481bfc922fb86545c92f2c270496c2 /src/components | |
| parent | cb58a18f0f32cce04d13cf2d10b33d7721eebe1e (diff) | |
add 404/sitemap/robots.txt + improve random stuff
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/Head.astro | 1 | ||||
| -rw-r--r-- | src/components/Nav.astro | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/components/Head.astro b/src/components/Head.astro index 1ccc6fa..0cce769 100644 --- a/src/components/Head.astro +++ b/src/components/Head.astro @@ -8,4 +8,5 @@ const { title, description } = Astro.props; <title>{title}</title> <meta name="description" content={description} /> <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="sitemap" href="/sitemap-index.xml" /> </head> diff --git a/src/components/Nav.astro b/src/components/Nav.astro index 135027f..2761ca6 100644 --- a/src/components/Nav.astro +++ b/src/components/Nav.astro @@ -21,7 +21,7 @@ const links: Links = { --- <nav> - <div class="flex flex-column justify-center mx-auto p-5"> + <div class="flex flex-column justify-center mx-auto p-7"> <ul class="inline"> { Object.entries(links).map(([link, url]) => ( |
