|
1 |
| -import { FaDiscord, FaGithub, FaLinkedinIn } from "react-icons/fa6"; |
2 |
| -import { SiGmail } from "react-icons/si"; |
3 | 1 | import { baseURL } from "../../Utils/info";
|
| 2 | +import SocialMedia from "./SocialMedia"; |
| 3 | +import Sponsers from "./Sponsers"; |
4 | 4 |
|
5 | 5 | const Footer = () => {
|
6 |
| - const btnClass = |
7 |
| - "btn rounded-full text-white text-lg w-12 p-0 border-none bg-[#202020] hover:bg-[#282828] glow"; |
8 |
| - |
9 | 6 | return (
|
10 | 7 | <div className="border-t border-[--border-color] flex py-8 bg-[#181818]">
|
11 | 8 | <div className="flex flex-col flex-1 gap-3 items-center">
|
12 |
| - <img src={`${baseURL}/src/Assets/Images/big-logo-light.png`} alt="DS3 Logo" className="w-40" /> |
| 9 | + <img |
| 10 | + src={`${baseURL}/src/Assets/Images/big-logo-light.png`} |
| 11 | + alt="DS3 Logo" |
| 12 | + className="w-40" |
| 13 | + /> |
13 | 14 | <div className="flex flex-col gap-2 items-center text-sm font-medium">
|
14 | 15 | <span>© 2024 Data Science Student Society, All Rights Reserved</span>
|
15 | 16 | </div>
|
16 | 17 | </div>
|
17 |
| - <div |
18 |
| - id="quick-link" |
19 |
| - className="flex flex-1 justify-center gap-x-20 border-x border-[--border-color]" |
20 |
| - > |
21 |
| - <div className="flex flex-col gap-y-2 justify-center"> |
22 |
| - <h4 className="text-lg font-bold mb-2 text-white">Information</h4> |
23 |
| - <a href="" className="hover:underline"> |
24 |
| - About |
25 |
| - </a> |
26 |
| - <a href="" className="hover:underline"> |
27 |
| - Events |
28 |
| - </a> |
29 |
| - </div> |
30 |
| - <div className="flex flex-col gap-y-2 justify-center"> |
31 |
| - <h4 className="text-lg font-bold mb-2 text-white">Get Involved</h4> |
32 |
| - <a href="" className="hover:underline"> |
33 |
| - Projects |
34 |
| - </a> |
35 |
| - <a href="" className="hover:underline"> |
36 |
| - Consulting |
37 |
| - </a> |
38 |
| - </div> |
39 |
| - </div> |
40 |
| - <div |
41 |
| - id="social-media-links" |
42 |
| - className="flex flex-col flex-1 items-center justify-center gap-y-8" |
43 |
| - > |
44 |
| - <h4 className="text-lg font-bold text-white">Social Links</h4> |
45 |
| - <div className="flex items-center w-[20vw] justify-evenly"> |
46 |
| - <button |
47 |
| - onClick={() => window.open("https://discord.gg/fbnAP848V9", "_blank")} |
48 |
| - className={btnClass} |
49 |
| - title={"Discord"} |
50 |
| - > |
51 |
| - <FaDiscord /> |
52 |
| - </button> |
53 |
| - <button |
54 |
| - onClick={() => window.open("mailto:[email protected]", "_blank")} |
55 |
| - className={btnClass} |
56 |
| - title={"Mail"} |
57 |
| - > |
58 |
| - <SiGmail /> |
59 |
| - </button> |
60 |
| - <button |
61 |
| - onClick={() => window.open("https://github.com/TheBoyRoy05/", "_blank")} |
62 |
| - className={btnClass} |
63 |
| - title={"Github"} |
64 |
| - > |
65 |
| - <FaGithub /> |
66 |
| - </button> |
67 |
| - <button |
68 |
| - onClick={() => window.open("https://www.linkedin.com/in/issacroy/", "_blank")} |
69 |
| - className={btnClass} |
70 |
| - title={"LinkedIn"} |
71 |
| - > |
72 |
| - <FaLinkedinIn /> |
73 |
| - </button> |
74 |
| - </div> |
75 |
| - </div> |
| 18 | + <Sponsers /> |
| 19 | + <SocialMedia /> |
76 | 20 | </div>
|
77 | 21 | );
|
78 | 22 | };
|
|
0 commit comments