Skip to content

Commit

Permalink
Social Media Component
Browse files Browse the repository at this point in the history
  • Loading branch information
dchaudhari0811 committed Aug 27, 2023
1 parent ff66d89 commit e556ab5
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/components/_Landing/global_components/SocialMediaComponent.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/* eslint-disable react/jsx-no-target-blank */
/* eslint-disable react/jsx-max-props-per-line */
import React from "react";
import { FaInstagram } from "react-icons/fa";
import { FaTwitter } from "react-icons/fa";
import { FaFacebookF } from "react-icons/fa";
function SocialMediaComponent() {

return (
<div className="m-auto mt-5 h-6 bg-gray-900 p-6 w-36">

<a href = "https://www.instagram.com/thehackru/" target="_blank" >< FaInstagram style ={{marginTop: "-11px", marginLeft: "-8px"}} size = "25px" color = "white"/></a>
<a href = "https://twitter.com/theHackRU" target="_blank" >< FaTwitter style ={{marginTop: "-24px", marginLeft: "41px"}} size = "22px" color = "white"/></a>
<a href = "https://www.facebook.com/theHackRU/" target="_blank" >< FaFacebookF style ={{marginTop: "-24px", marginLeft: "82px"}} size = "23px" color = "white"/></a>

</div>
);
}


export default SocialMediaComponent;

0 comments on commit e556ab5

Please sign in to comment.