My personal website
1export const Footer = () => {
2 const footerLinks = [
3 {
4 href: "#projects",
5 text: "Projects",
6 },
7 {
8 href: "#contact",
9 text: "Contact",
10 },
11 {
12 href: "#privacy",
13 text: "Privacy Policy",
14 },
15 {
16 href: "https://stats.uptimerobot.com/83xx6s98Y",
17 text: "Status",
18 external: true,
19 },
20 ];
21
22 return (
23 <>
24 {footerLinks.map((link, index) => (
25 <>
26 {index > 0 && " · "}
27 <a
28 href={link.href}
29 target={link.external ? "_blank" : undefined}
30 rel={link.external ? "noopener" : undefined}
31 >
32 {link.external && (
33 <>
34 <i className="icon-new_tab"></i>{" "}
35 </>
36 )}
37 {link.text}
38 </a>
39 </>
40 ))}
41 </>
42 );
43};