mirror of
https://github.com/pupperpowell/bibdle.git
synced 2026-04-05 17:33:31 -04:00
65 lines
1.8 KiB
Svelte
65 lines
1.8 KiB
Svelte
<script lang="ts">
|
|
import { fade } from "svelte/transition";
|
|
import BlueskyLogo from "$lib/assets/Bluesky_Logo.svg";
|
|
</script>
|
|
|
|
<div class="text-center" in:fade={{ delay: 1500, duration: 1000 }}>
|
|
<div
|
|
class="flex flex-col items-center gap-2 bg-white/50 backdrop-blur-sm px-8 py-4 rounded-2xl border border-white/50 shadow-sm"
|
|
>
|
|
<p class="text-xs uppercase tracking-[0.2em] text-gray-500 font-bold">
|
|
A project by George Powell & Silent Summit Co.
|
|
</p>
|
|
<!-- <p class="text-xs uppercase tracking-[0.2em] text-gray-500 font-bold">
|
|
For questions, comments, job opportunities, or cash donations,
|
|
please email <a
|
|
class="text-blue-400"
|
|
href="mailto:george+bibdle@silentsummit.co"
|
|
>george@silentsummit.co</a
|
|
>
|
|
</p> -->
|
|
<!-- <p class="text-lg font-triodion font-black text-gray-800 tabular-nums">
|
|
|
|
</p> -->
|
|
|
|
<!-- Bluesky Social Media Button -->
|
|
</div>
|
|
|
|
<div class="mt-8 flex items-center justify-center gap-6">
|
|
<a
|
|
href="https://bsky.app/profile/snail.city"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
class="inline-flex hover:opacity-80 transition-opacity"
|
|
aria-label="Follow on Bluesky"
|
|
data-umami-event="Bluesky clicked"
|
|
>
|
|
<img src={BlueskyLogo} alt="Bluesky" class="w-8 h-8" />
|
|
</a>
|
|
|
|
<div class="w-0.5 h-8 bg-gray-400"></div>
|
|
|
|
<a
|
|
href="mailto:george+bibdle@silentsummit.co"
|
|
class="inline-flex hover:opacity-80 transition-opacity"
|
|
aria-label="Send email"
|
|
data-umami-event="Email clicked"
|
|
>
|
|
<svg
|
|
class="w-8 h-8 text-gray-700"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
viewBox="0 0 24 24"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
stroke-width="2"
|
|
d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"
|
|
></path>
|
|
</svg>
|
|
</a>
|
|
</div>
|
|
</div>
|