File tree Expand file tree Collapse file tree 2 files changed +2
-16
lines changed Expand file tree Collapse file tree 2 files changed +2
-16
lines changed Original file line number Diff line number Diff line change 1
1
import { Button } from "@/components/ui/button" ;
2
2
import { memo } from "react" ;
3
- import { FaGithub , FaInstagram , FaTwitter } from "react-icons/fa" ;
3
+ import { FaGithub } from "react-icons/fa" ;
4
4
import { Link } from "react-router-dom" ;
5
5
6
6
const socialLinks = [
7
7
{ link : "https://github.com/No0ne003/React-Projects" , icon : < FaGithub /> } ,
8
- { link : "https://instagram.com/No0ne.003" , icon : < FaInstagram /> } ,
9
- { link : "https://x.com/No0ne003" , icon : < FaTwitter /> } ,
10
8
] ;
11
9
12
10
const Footer = memo ( function Footer ( { setCursorVariant } ) {
Original file line number Diff line number Diff line change 1
1
import { memo } from "react" ;
2
2
// Assets
3
- import palestineSvg from "@/assets/svg/Flag_of_Palestine.svg" ;
4
- import { FaGithub , FaInstagram , FaTwitter } from "react-icons/fa" ;
3
+ import { FaGithub } from "react-icons/fa" ;
5
4
6
5
// Components
7
6
import { Link } from "react-router-dom" ;
8
7
import { ModeToggle } from "@/components/mode-toggle" ;
9
8
import NavLinks from "@/components/ui/NavLinks" ;
10
- import { Button } from "@/components/ui/button" ;
11
9
12
10
const socialLinks = [
13
11
{
14
12
link : "https://github.com/No0ne003/React-Projects" ,
15
13
icon : < FaGithub size = { 15 } /> ,
16
14
name : "Github" ,
17
15
} ,
18
- {
19
- link : "https://instagram.com/No0ne.003" ,
20
- icon : < FaInstagram size = { 15 } /> ,
21
- name : "instagram" ,
22
- } ,
23
- {
24
- link : "https://x.com/No0ne003" ,
25
- icon : < FaTwitter size = { 15 } /> ,
26
- name : "twitter" ,
27
- } ,
28
16
] ;
29
17
30
18
const Header = memo ( function Header ( { setCursorVariant } ) {
You can’t perform that action at this time.
0 commit comments