-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFooter.jsx
30 lines (29 loc) · 836 Bytes
/
Footer.jsx
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
import { portfolioConfig } from "./config";
export default function Footer() {
return (
<footer id="end">
<div className="the-end">
<div className="contact-credits-wrapper">
<div className="contacts">
<h2>Contacts</h2>
{
portfolioConfig.links.map((link,id) => {
return <h1 key={id}><a href={link.href}>{link.name}</a></h1>
})
}
</div>
<div className="credits">
<h2>Credits</h2>
<h1>Design Inspiration - <a href="https://maelanlemeur.com/"><h1>MAELAN</h1></a></h1>
<h1><a href="https://">Template for this at - <h1>GITHUB 🤟</h1></a></h1>
<h1><a href="https://twitter.com/axnjrno1">Template By - AXN</a></h1>
</div>
</div>
<div className="faq">
<p>Just say!</p>
<div id="spin"></div>
</div>
</div>
</footer>
)
}