1+ import React from 'react' ;
2+ import '../../styles/pages/Home/Footer.css' ;
3+ import { Link } from 'react-router-dom' ;
4+ import { LogoDiscord , LogoFacebook , LogoInstagram , LogoLinkedin , LogoGithub , LogoYoutube } from 'react-ionicons'
5+ import pecacm from '../../assets/icons/acm.webp'
6+ import pec from '../../assets/icons/pec_centenary_logo.jpg'
7+ function Footer ( ) {
8+ return (
9+ < footer className = "bg-primary text-white" >
10+ < div className = "waves" >
11+ { /* Your wave divs */ }
12+ </ div >
13+
14+ < div className = "container" >
15+ < div className = "row " >
16+ < div className = " col-md-4 justify-content-center text-center p-3" >
17+ < h2 > Socials</ h2 >
18+ < ul className = "social_icon list-inline d-flex p-3 justify-content-around" >
19+ < li >
20+ < Link to = "https://www.facebook.com/pecacm/" target = "_blank" >
21+ < LogoFacebook className = 'ion' />
22+ </ Link >
23+ </ li >
24+ < li >
25+ < Link to = "https://discord.com/invite/59mDGtSyGD" target = "_blank" >
26+ < LogoDiscord />
27+ </ Link >
28+ </ li >
29+ < li >
30+ < Link to = "https://www.instagram.com/pecacm/" target = "_blank" >
31+ < LogoInstagram />
32+ </ Link >
33+ </ li >
34+ < li >
35+ < Link to = "https://www.linkedin.com/company/pec-acm-student-chapter/" target = "_blank" >
36+ < LogoLinkedin />
37+ </ Link >
38+ </ li >
39+ < li >
40+ < Link to = "https://github.com/PEC-CSS/" target = "_blank" >
41+ < LogoGithub />
42+ </ Link >
43+ </ li >
44+ < li >
45+ < Link to = "https://www.youtube.com/c/PECACMStudentChapter" target = "_blank" >
46+ < LogoYoutube />
47+ </ Link >
48+ </ li >
49+ </ ul >
50+ </ div >
51+
52+ < div className = "container-fluid col-md-4" >
53+ < div className = 'row justify-content-center p-3 links' >
54+
55+ < h2 > Links</ h2 >
56+ < ul className = "events p-3" >
57+ < li className = 'p-3' >
58+ < Link to = "https://www.pecacm.com/" target = "_blank" >
59+ < img src = { pecacm } className = "pecacm img-fluid" alt = "PEC ACM" />
60+ </ Link >
61+ </ li >
62+ < li className = 'p-3' >
63+ < Link to = "https://pec.ac.in/campus-life/ACM" target = "_blank" >
64+ < img src = { pec } className = "pec img-fluid" alt = "PEC" />
65+ </ Link >
66+ </ li >
67+ </ ul >
68+ </ div >
69+ </ div >
70+
71+ < div className = "col-md-4 p-3" >
72+ < h2 > Community</ h2 >
73+ < ul className = "comm list-group list-group-flush" >
74+ < li className = "list-group-item" > < Link aria-label = "Development Web/App" to = "https://www.pecacm.com//branches/development" target = "_blank" > Development Web/App</ Link > </ li >
75+ < li className = "list-group-item" > < Link aria-label = "Machine Learning" to = "https://www.pecacm.com//branches/ai" target = "_blank" > Machine Learning</ Link > </ li >
76+ < li className = "list-group-item" > < Link aria-label = "Competitive Programming" to = "https://www.pecacm.com//branches/cp" target = "_blank" > Competitive Programming</ Link > </ li >
77+ < li className = "list-group-item" > < Link aria-label = "Cyber Security" to = "https://www.pecacm.com//branches/cyber" target = "_blank" > Cyber Security</ Link > </ li >
78+ < li className = "list-group-item" > < Link aria-label = "Designing and Socials" to = "https://www.pecacm.com//branches/socials" target = "_blank" > Designing and Socials</ Link > </ li >
79+ < li className = "list-group-item" > < Link aria-label = "Women in Tech" to = "https://www.pecacm.com//branches/wit" target = "_blank" > Women in Tech</ Link > </ li >
80+
81+ </ ul >
82+ </ div >
83+ </ div >
84+ </ div >
85+
86+ < p className = "text-center" >
87+ { new Date ( ) . getFullYear ( ) } © PEC ACM
88+ </ p >
89+ </ footer >
90+
91+ ) ;
92+ }
93+
94+ export default Footer ;
0 commit comments