Skip to content

Commit 78a38ca

Browse files
authored
Merge pull request #1 from No0ne003/update-links
Update links
2 parents b4999c9 + 3f7767a commit 78a38ca

File tree

2 files changed

+2
-16
lines changed

2 files changed

+2
-16
lines changed

src/layouts/Footer.jsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
import { Button } from "@/components/ui/button";
22
import { memo } from "react";
3-
import { FaGithub, FaInstagram, FaTwitter } from "react-icons/fa";
3+
import { FaGithub } from "react-icons/fa";
44
import { Link } from "react-router-dom";
55

66
const socialLinks = [
77
{ 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 /> },
108
];
119

1210
const Footer = memo(function Footer({ setCursorVariant }) {

src/layouts/header.jsx

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,18 @@
11
import { memo } from "react";
22
// 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";
54

65
// Components
76
import { Link } from "react-router-dom";
87
import { ModeToggle } from "@/components/mode-toggle";
98
import NavLinks from "@/components/ui/NavLinks";
10-
import { Button } from "@/components/ui/button";
119

1210
const socialLinks = [
1311
{
1412
link: "https://github.com/No0ne003/React-Projects",
1513
icon: <FaGithub size={15} />,
1614
name: "Github",
1715
},
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-
},
2816
];
2917

3018
const Header = memo(function Header({ setCursorVariant }) {

0 commit comments

Comments
 (0)