Skip to content

Commit 0ab080b

Browse files
committed
feat: add reddit link
1 parent 2c383f3 commit 0ab080b

File tree

2 files changed

+20
-14
lines changed

2 files changed

+20
-14
lines changed

app/_components/json-ld.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ export function generateArticleSchema(title: string, description: string, path:
2929
"name": "David Dias",
3030
"url": "https://thedaviddias.com",
3131
"sameAs": [
32+
"https://www.reddit.com/r/UXPatterns/",
3233
"https://x.com/thedaviddias",
3334
"https://github.com/thedaviddias",
3435
"https://linkedin.com/in/thedaviddias",
35-
"https://bsky.social/thedaviddias"
3636
]
3737
},
3838
"publisher": {

app/_components/social.tsx

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { siBluesky, siDiscord, siGithub, siX } from 'simple-icons'
1+
import { siBluesky, siDiscord, siGithub, siReddit, siX } from 'simple-icons'
22
import { SimpleIconComponent } from './browser-support'
33

44
interface SocialLink {
@@ -10,6 +10,18 @@ interface SocialLink {
1010
}
1111

1212
export const SOCIAL_LINKS: SocialLink[] = [
13+
{
14+
label: 'Reddit',
15+
link: 'https://www.reddit.com/r/UXPatterns/',
16+
shortlink: 'https://ddias.link/ux-reddit',
17+
rel: 'me',
18+
icon: (
19+
<SimpleIconComponent
20+
icon={siReddit}
21+
className="w-10 h-10 p-1.5 border rounded-full transition-colors duration-200 hover:bg-gray-100 dark:hover:bg-gray-800 border-gray-200 dark:border-gray-700"
22+
/>
23+
),
24+
},
1325
{
1426
label: 'X',
1527
link: 'https://x.com/thedaviddias',
@@ -34,18 +46,12 @@ export const SOCIAL_LINKS: SocialLink[] = [
3446
/>
3547
),
3648
},
37-
// {
38-
// label: 'LinkedIn',
39-
// link: 'https://www.linkedin.com/in/thedaviddias',
40-
// shortlink: 'https://ddias.link/linkedin',
41-
// rel: 'me',
42-
// icon: (
43-
// <SimpleIconComponent
44-
// icon={siLinkedin}
45-
// className="w-10 h-10 p-1.5 border rounded-full transition-colors duration-200 hover:bg-gray-100 dark:hover:bg-gray-800 border-gray-200 dark:border-gray-700"
46-
// />
47-
// ),
48-
// },
49+
{
50+
label: 'LinkedIn',
51+
link: 'https://www.linkedin.com/in/thedaviddias',
52+
shortlink: 'https://ddias.link/linkedin',
53+
rel: 'me',
54+
},
4955
{
5056
label: 'Discord',
5157
link: 'https://discord.gg/EG6tmxsESP',

0 commit comments

Comments
 (0)