Skip to content

Commit

Permalink
first
Browse files Browse the repository at this point in the history
  • Loading branch information
Biswas Khayargoli committed Jul 6, 2024
1 parent 976a1fc commit 7d2d5ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/SocialLinks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ import { Facebook, Linkedin, Twitter, ExternalLink } from "lucide-react";
import { buttonVariants } from "./ui/button";
import Link from "next/link";
import Image from "next/image";
import Upwork from "@/public/upwork.png";

const SocialLinks = () => {
const links = [
{ name: "Linkedin", link: "https://www.linkedin.com/in/biswas-khayargoli-8a50a8b7/", icon: <Linkedin /> },
{ name: "Upwork", link: "https://www.upwork.com/freelancers/~01459b52cca83e532c", icon: <Image src="/upwork.png" alt="Upwork" width={60} height={60} /> },
{ name: "Upwork", link: "https://www.upwork.com/freelancers/~01459b52cca83e532c", icon: <Image src={Upwork} alt="Upwork" width={60} height={60} /> },
];
return (
<>
Expand Down

0 comments on commit 7d2d5ef

Please sign in to comment.