Skip to content

Commit

Permalink
Merge pull request #1 from No0ne003/update-links
Browse files Browse the repository at this point in the history
Update links
  • Loading branch information
No0ne003 authored May 26, 2024
2 parents b4999c9 + 3f7767a commit 78a38ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 16 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
14 changes: 1 addition & 13 deletions src/layouts/header.jsx
Original file line number Diff line number Diff line change
@@ -1,30 +1,18 @@
import { memo } from "react";
// Assets
import palestineSvg from "@/assets/svg/Flag_of_Palestine.svg";
import { FaGithub, FaInstagram, FaTwitter } from "react-icons/fa";
import { FaGithub } from "react-icons/fa";

// Components
import { Link } from "react-router-dom";
import { ModeToggle } from "@/components/mode-toggle";
import NavLinks from "@/components/ui/NavLinks";
import { Button } from "@/components/ui/button";

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

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

0 comments on commit 78a38ca

Please sign in to comment.