@@ -5,8 +5,7 @@ import * as config from '@/lib/config'
55
66import styles from './PageSocial.module.css'
77import { FaGithub , FaLinkedin , FaTwitter , FaYoutube } from 'react-icons/fa'
8- import { FaXTwitter , FaGitlab , FaEnvelopeOpenText } from 'react-icons/fa6'
9- import { IoIosBug } from 'react-icons/io'
8+ import { FaEnvelopeOpenText } from 'react-icons/fa6'
109
1110interface SocialLink {
1211 name : string
@@ -25,14 +24,6 @@ export const socialLinks: SocialLink[] = [
2524 icon : FaTwitter
2625 } ,
2726
28- config . twitterX && {
29- name : 'twitterX' ,
30- href : `https://x.com/${ config . twitterX } ` ,
31- title : `X @${ config . twitterX } ` ,
32- color : "#222" ,
33- icon : FaXTwitter
34- } ,
35-
3627 config . github && {
3728 name : 'github' ,
3829 href : `https://github.com/${ config . github } ` ,
@@ -41,14 +32,6 @@ export const socialLinks: SocialLink[] = [
4132 icon : FaGithub
4233 } ,
4334
44- config . gitlab && {
45- name : 'gitlab' ,
46- href : `https://gitlab.com/${ config . github } ` ,
47- title : `GitLab @${ config . github } ` ,
48- color : "#e24329" ,
49- icon : FaGitlab
50- } ,
51-
5235 config . linkedin && {
5336 name : 'linkedin' ,
5437 href : `https://www.linkedin.com/in/${ config . linkedin } ` ,
@@ -72,14 +55,6 @@ export const socialLinks: SocialLink[] = [
7255 color : "#ff0000" ,
7356 icon : FaYoutube
7457 } ,
75-
76- config . bugtracker && {
77- name : 'bugtracker' ,
78- href : `${ config . bugtracker } ` ,
79- title : 'Bugtracker' ,
80- color : "#e24329" ,
81- icon : IoIosBug
82- }
8358] . filter ( Boolean )
8459
8560export function PageSocial ( prefix : string ) {
0 commit comments