mirror of
https://github.com/trafficlunar/website.git
synced 2026-08-12 12:29:49 +00:00
feat: website
This commit is contained in:
parent
fc22cf0330
commit
215e6944a8
45 changed files with 709 additions and 16 deletions
40
src/components/Socials.astro
Normal file
40
src/components/Socials.astro
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
---
|
||||
import GitHubIcon from "../assets/icons/socials/github.svg";
|
||||
import BlueskyIcon from "../assets/icons/socials/bluesky.svg";
|
||||
import RedditIcon from "../assets/icons/socials/reddit.svg";
|
||||
import DiscordIcon from "../assets/icons/socials/discord.svg";
|
||||
import YouTubeIcon from "../assets/icons/socials/youtube.svg";
|
||||
import MyAnimeListIcon from "../assets/icons/socials/myanimelist.svg";
|
||||
import LastFMIcon from "../assets/icons/socials/lastfm.svg";
|
||||
import MailIcon from "../assets/icons/socials/mail.svg";
|
||||
---
|
||||
|
||||
<section class="mt-8 !p-2">
|
||||
<legend>socials</legend>
|
||||
<ul class="grid grid-cols-4 [&_a]:flex [&_a]:justify-center [&_a]:size-full [&_a]:py-1">
|
||||
<li class="z-50">
|
||||
<a href="https://github.com/trafficlunar" data-tooltip="GitHub"><GitHubIcon /></a>
|
||||
</li>
|
||||
<li class="z-50">
|
||||
<a href="https://bsky.app/profile/trafficlunar.net" data-tooltip="Bluesky"><BlueskyIcon /></a>
|
||||
</li>
|
||||
<li class="z-50">
|
||||
<a href="https://www.reddit.com/user/trafficlunr" data-tooltip="Reddit"><RedditIcon /></a>
|
||||
</li>
|
||||
<li class="z-50">
|
||||
<a href="https://discord.com/users/1076507715775496233" data-tooltip="Discord"><DiscordIcon /></a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://www.youtube.com/@trafficlunar" data-tooltip="YouTube"><YouTubeIcon /></a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://myanimelist.net/profile/trafficlunar" data-tooltip="MyAnimeList"><MyAnimeListIcon /></a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://www.last.fm/user/axolotlmaid" data-tooltip="Last.FM"><LastFMIcon /></a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="mailto:hello@trafficlunar.net" data-tooltip="E-mail"><MailIcon /></a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
Loading…
Add table
Add a link
Reference in a new issue