-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathFooter.astro
More file actions
51 lines (50 loc) · 1.22 KB
/
Footer.astro
File metadata and controls
51 lines (50 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
const SOCIALS = [
{
name: 'instagram',
url: 'https://www.instagram.com/cpp.sea/',
},
{
name: 'linkedin',
url: 'https://www.linkedin.com/company/cpp-sea',
},
{
name: 'github',
url: 'https://github.com/cppsea',
},
{
name: 'discord',
url: 'https://discord.gg/3FJNHyJ6P6',
},
];
---
<footer>
<div id='footer-container'>
<div id='branding'>
<a href='/'><img src='/images/full-logo.png' /></a>
</div><div id='social'>
<h3>Social</h3>
<ul>
<!-- Create a list item, with an anchor tag linking to every social media -->
{
SOCIALS.map((social) => (
<li>
<a href={social.url}>{social.name}</a>
</li>
))
}
</ul>
</div><div id='routes'>
<h3>More</h3><ul>
<li><a href='../../events'>events</a></li>
<li><a href='../../projects'>projects</a></li>
<li><a href='../../about'>about</a></li><li>
<a href='https://forms.gle/4HRGjgPjaLXfdzDK7'>join</a>
</li>
</ul>
</div>
</div><div id='copyright'>
© {new Date().getFullYear()} SOFTWARE ENGINEERING ASSOCIATION AT CAL POLY
POMONA • ALL RIGHTS RESERVED
</div>
</footer>