aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Footer.astro
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2024-10-17 01:16:32 -0700
committerPinapelz <yukais@pinapelz.com>2024-10-17 01:16:32 -0700
commit582f753a9370c00f82ddd0ea0c4bf842df318a96 (patch)
treebd91adb85e174f701a4e5fa534a2cde759efcff7 /src/components/Footer.astro
parent7be49978b023bc1ec89ca0fc8af4ec5cd1e5ae9b (diff)
initial moeification
Diffstat (limited to 'src/components/Footer.astro')
-rw-r--r--src/components/Footer.astro60
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>
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage