diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-10-17 01:16:32 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-10-17 01:16:32 -0700 |
| commit | 582f753a9370c00f82ddd0ea0c4bf842df318a96 (patch) | |
| tree | bd91adb85e174f701a4e5fa534a2cde759efcff7 /src/components/Footer.astro | |
| parent | 7be49978b023bc1ec89ca0fc8af4ec5cd1e5ae9b (diff) | |
initial moeification
Diffstat (limited to 'src/components/Footer.astro')
| -rw-r--r-- | src/components/Footer.astro | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/src/components/Footer.astro b/src/components/Footer.astro new file mode 100644 index 0000000..6670702 --- /dev/null +++ b/src/components/Footer.astro @@ -0,0 +1,60 @@ +--- +import dataList from "../data/user.json"; +--- + +<footer class="footer"> + <div class="footer-content"> + <p class="footer-text">萌え萌えキュン</p> + + <div class="footer-links"> + <a + href="https://github.com/yourprofile" + class="footer-link" + aria-label="GitHub" + > + <i class="ri-github-fill"></i> + Source + </a> + </div> + </div> +</footer> + +<style> + .footer { + padding: 1.5rem 0; + text-align: center; + position: relative; + } + + .footer-content { + display: flex; + flex-direction: column; + align-items: center; + gap: 0.5rem; + } + + .footer-text { + font-size: 0.875rem; + color: var(--zinc-900); + } + + .footer-emoji { + font-size: 1rem; + color: var(--zinc-800); + } + + .footer-links { + display: flex; + gap: 1rem; + } + + .footer-link { + font-size: 1.25rem; + color: var(--zinc-900); + transition: color 0.2s ease-in-out; + } + + .footer-link:hover { + color: var(--pink-darker); + } +</style> |
