File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import FooterCopyright from "./FooterCopyright";
5
5
import { ROUTES } from "../../constants/routes" ;
6
6
import { FaDiscord , FaGithub , FaMastodon , FaXTwitter } from "react-icons/fa6" ;
7
7
import { SiMatrix } from "react-icons/si" ;
8
+ import { SOCIALS } from "../../constants/socials" ;
8
9
9
10
const Footer : React . FC = ( ) => (
10
11
< footer className = { styles . footer } >
@@ -27,19 +28,19 @@ const Footer: React.FC = () => (
27
28
</ div >
28
29
</ div >
29
30
< div className = { styles . footerSocialLinks } >
30
- < Link href = { ROUTES . SOCIALS . DISCORD } target = "_blank" rel = "noopener noreferrer" aria-label = "Discord" >
31
+ < Link href = { SOCIALS . DISCORD } target = "_blank" rel = "noopener noreferrer" aria-label = "Discord" >
31
32
< FaDiscord />
32
33
</ Link >
33
- < Link href = { ROUTES . SOCIALS . ACTIVITY_PUB } target = "_blank" rel = "noopener noreferrer" aria-label = "Mastodon" >
34
+ < Link href = { SOCIALS . ACTIVITY_PUB } target = "_blank" rel = "noopener noreferrer" aria-label = "Mastodon" >
34
35
< FaMastodon />
35
36
</ Link >
36
- < Link href = { ROUTES . SOCIALS . X } target = "_blank" rel = "noopener noreferrer" aria-label = "X" >
37
+ < Link href = { SOCIALS . X } target = "_blank" rel = "noopener noreferrer" aria-label = "X" >
37
38
< FaXTwitter />
38
39
</ Link >
39
- < Link href = { ROUTES . SOCIALS . MATRIX } target = "_blank" rel = "noopener noreferrer" aria-label = "Matrix" >
40
+ < Link href = { SOCIALS . MATRIX } target = "_blank" rel = "noopener noreferrer" aria-label = "Matrix" >
40
41
< SiMatrix />
41
42
</ Link >
42
- < Link href = { ROUTES . SOCIALS . GITHUB } target = "_blank" rel = "noopener noreferrer" aria-label = "GitHub" >
43
+ < Link href = { SOCIALS . GITHUB } target = "_blank" rel = "noopener noreferrer" aria-label = "GitHub" >
43
44
< FaGithub />
44
45
</ Link >
45
46
</ div >
You can’t perform that action at this time.
0 commit comments