diff options
author | Valentin Popov <valentin@popov.link> | 2024-09-18 03:35:18 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-09-18 03:35:18 +0300 |
commit | 61e7f5d5b4bf366dbf77b62e788f2aac251a6e1e (patch) | |
tree | 8f309dcdadb185d310a15a380913f33f9d8da023 /src/components/Footer.astro | |
parent | 9ff6f2cd0eb93f294e0a03226daaf5000f1b5f44 (diff) | |
download | popov.link-61e7f5d5b4bf366dbf77b62e788f2aac251a6e1e.tar.xz popov.link-61e7f5d5b4bf366dbf77b62e788f2aac251a6e1e.zip |
Refactor Footer and Header components, update layout styles, and adjust Analytics placement
Diffstat (limited to 'src/components/Footer.astro')
-rw-r--r-- | src/components/Footer.astro | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/components/Footer.astro b/src/components/Footer.astro index ea53b25..3dd3745 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -15,6 +15,14 @@ import dayjs from "dayjs"; right: 0; } + a { + color: $colorText; + + &:visited { + color: $colorText; + } + } + .left-nav, .right-nav { display: inline-block; @@ -38,14 +46,6 @@ import dayjs from "dayjs"; padding: 4em 1em 2em; } } - - a { - color: $colorText; - - &:visited { - color: $colorText; - } - } </style> <footer> @@ -54,7 +54,6 @@ import dayjs from "dayjs"; </div> <div class="right-nav"> <a href="https://github.com/valentineus" target="_blank"><Icon name="hugeicons:github-01" /></a> - <a href="https://www.linkedin.com/in/valentineus/" target="_blank"><Icon name="hugeicons:linkedin-01" /></a> <a href="https://analytics.popov.link" target="_blank"><Icon name="hugeicons:analytics-up" /></a> <a href="/feed.xml" target="_blank"><Icon name="hugeicons:rss" /></a> </div> |