tangled
alpha
login
or
join now
vielle.dev
/
site
0
fork
atom
Personal Site
0
fork
atom
overview
issues
pulls
pipelines
Add proper content to tab labels etc
vielle.dev
7 months ago
4a244476
107a21e4
verified
This commit was signed with the committer's
known signature
.
vielle.dev
SSH Key Fingerprint:
SHA256:/4bvxqoEh9iMdjAPgcgAgXKZZQTROL3ULiPt6nH9RSs=
+4
-4
1 changed file
expand all
collapse all
unified
split
src
components
home
feeds
Feeds.astro
+4
-4
src/components/home/feeds/Feeds.astro
···
15
15
icon?: ((_props: astroHTML.JSX.SVGAttributes) => any) | string;
16
16
content: (_props: Record<string, any>) => any;
17
17
}[] = [
18
18
-
{ id: "tab1", label: "Tab 1", icon: IconBluesky, content: Bluesky },
19
19
-
{ id: "tab2", label: "Tab 2", icon: IconTumblr, content: Tumblr },
20
20
-
{ id: "tab3", label: "Tab 3", icon: IconGit, content: Tangled },
21
21
-
{ id: "tab4", label: "Tab 4", icon: IconGithub, content: Github },
18
18
+
{ id: "bsky", label: "Bluesky", icon: IconBluesky, content: Bluesky },
19
19
+
{ id: "tmlblr", label: "Tumblr", icon: IconTumblr, content: Tumblr },
20
20
+
{ id: "tangled", label: "Tangled", icon: IconGit, content: Tangled },
21
21
+
{ id: "gh", label: "Github", icon: IconGithub, content: Github },
22
22
];
23
23
---
24
24