Skip to content

Commit 6ee7221

Browse files
committed
chore: new socials services
1 parent 7bec486 commit 6ee7221

File tree

2 files changed

+30
-7
lines changed

2 files changed

+30
-7
lines changed

CHANGELOG.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
# CHANGELOG
22

3-
**Unpublished:**
4-
- Introduced CHANGELOG
3+
**v0.1.0-alpha.1:**
4+
- Introduced `CHANGELOG.md`
5+
- Introduced new services as social icons:
6+
- `Phone` (converts into a link with `tel:` prefix)
7+
- `Facebook`
8+
- `YouTube`
9+
- `Instagram`
10+
- `LinkedIn`
11+
- `Slack`
12+
- `Discord`
13+
- `TikTok`
14+
- `Snapchat`
15+
- `Threads`
16+
- `Telegram`
517

618
**v0.1.0-alpha.0:**
719
- Initial implementation

components/socials.go

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,22 @@ package components
33
type Service string
44

55
const (
6-
Website Service = "WEBSITE"
7-
Email Service = "EMAIL"
8-
Twitter Service = "TWITTER"
9-
X Service = "X"
10-
Github Service = "GITHUB"
6+
Website Service = "WEBSITE"
7+
Email Service = "EMAIL"
8+
Phone Service = "PHONE"
9+
Facebook Service = "FACEBOOK"
10+
YouTube Service = "YOUTUBE"
11+
Twitter Service = "TWITTER"
12+
X Service = "X"
13+
GitHub Service = "GITHUB"
14+
Instagram Service = "INSTAGRAM"
15+
LinkedIn Service = "LINKEDIN"
16+
Slack Service = "SLACK"
17+
Discord Service = "DISCORD"
18+
TikTok Service = "TIKTOK"
19+
Snapchat Service = "SNAPCHAT"
20+
Threads Service = "THREADS"
21+
Telegram Service = "TELEGRAM"
1122
)
1223

1324
type SocialItem struct {

0 commit comments

Comments
 (0)