diff options
| -rw-r--r-- | src/components/Footer.astro | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/src/components/Footer.astro b/src/components/Footer.astro index f67432e..cbec3c8 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -1,14 +1,16 @@ <footer> - <a href="https://github.com/pinapelz">github</a> · <a href="mailto:yukais@pinapelz.com">email</a> - <p>powered by Astro</p> + <a href="https://github.com/pinapelz">github</a> · <a + href="mailto:yukais@pinapelz.com">email</a + > · <a href="https://microblog.pinapelz.com/">microblog</a> + <p>powered by Astro</p> </footer> <style> - footer { - padding: 25px; - text-align: center; - } - footer p { - margin-top: 10px; - font-size: 0.8em; - } + footer { + padding: 25px; + text-align: center; + } + footer p { + margin-top: 10px; + font-size: 0.8em; + } </style> |
