Skip to content

Commit

Permalink
chore(footer): remove personal links from foooter, keep github repo only
Browse files Browse the repository at this point in the history
  • Loading branch information
No0ne003 committed May 26, 2024
1 parent 08236eb commit 3f7767a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/layouts/Footer.jsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
import { Button } from "@/components/ui/button";
import { memo } from "react";
import { FaGithub, FaInstagram, FaTwitter } from "react-icons/fa";
import { FaGithub } from "react-icons/fa";
import { Link } from "react-router-dom";

const socialLinks = [
{ link: "https://github.com/No0ne003/React-Projects", icon: <FaGithub /> },
{ link: "https://instagram.com/No0ne.003", icon: <FaInstagram /> },
{ link: "https://x.com/No0ne003", icon: <FaTwitter /> },
];

const Footer = memo(function Footer({ setCursorVariant }) {
Expand Down

0 comments on commit 3f7767a

Please sign in to comment.