Skip to content

Commit 7e89214

Browse files
committed
feat: reddit link
1 parent 950ad67 commit 7e89214

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

public/site-config.piml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@
2525
(url) https://www.linkedin.com/in/ahmed-samil-bulbul/?locale=en_US
2626
(icon) LinkedinLogo
2727

28+
> (link)
29+
(id) reddit
30+
(label) REDDIT
31+
(url) https://www.reddit.com/r/fezcodex/
32+
(icon) RedditLogo
33+
2834
> (link)
2935
(id) email
3036
(label) EMAIL

src/components/ContactModal.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import {
55
XLogoIcon,
66
GithubLogoIcon,
77
GlobeIcon,
8+
RedditLogoIcon,
89
} from '@phosphor-icons/react';
910
import GenericModal from './GenericModal';
1011
import { useSiteConfig } from '../context/SiteConfigContext';
@@ -14,6 +15,7 @@ const socialIcons = {
1415
XLogo: XLogoIcon,
1516
LinkedinLogo: LinkedinLogoIcon,
1617
EnvelopeSimple: EnvelopeSimpleIcon,
18+
RedditLogo: RedditLogoIcon,
1719
};
1820

1921
const ContactModal = ({ isOpen, onClose }) => {

src/components/Footer.jsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import {
77
LinkedinLogoIcon,
88
Command,
99
Terminal,
10+
RedditLogoIcon,
1011
} from '@phosphor-icons/react';
1112

1213
const Footer = () => {
@@ -127,10 +128,8 @@ const Footer = () => {
127128
<div className="flex gap-3 mb-8">
128129
<SocialIcon href="https://x.com/fezcoddy" icon={XLogoIcon} />
129130
<SocialIcon href="https://github.com/fezcode" icon={GithubLogoIcon} />
130-
<SocialIcon
131-
href="https://www.linkedin.com/in/ahmed-samil-bulbul/"
132-
icon={LinkedinLogoIcon}
133-
/>
131+
<SocialIcon href="https://www.reddit.com/r/fezcodex/" icon={RedditLogoIcon} />
132+
<SocialIcon href="https://www.linkedin.com/in/ahmed-samil-bulbul/" icon={LinkedinLogoIcon} />
134133
</div>
135134

136135
<div className="space-y-3 border-t border-white/10 pt-6">

0 commit comments

Comments
 (0)