blob: c616405ac3184bc2b9f2ad7f6ef9f36c969bb1cb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<script lang="ts">
import SectionTitle from "./SectionTitle.svelte";
import SocialCard from "./SocialCard.svelte";
</script>
<SectionTitle title="socials">places you can find me</SectionTitle>
<div class="flex place-content-start place-items-start w-full">
<SocialCard
name="mastodon"
icon="iconify-[fa7-brands--mastodon]"
rel="me"
href="https://beige.party/@toufy"
--color-fg="#6364ff"
--color-bg="#ffffff"
/>
<SocialCard
name="email"
icon="iconify-[fa7-solid--envelope]"
href="mailto:contact@toufy.me"
--color-fg="gray"
--color-bg="#ffffff"
/>
<SocialCard
name="tmdb"
icon="iconify-[cib--the-movie-database]"
href="https://www.themoviedb.org/u/toufy"
--color-fg="#0177d2"
--color-bg="#ffffff"
/>
</div>
|