-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFooter.tsx
More file actions
63 lines (58 loc) · 2.07 KB
/
Footer.tsx
File metadata and controls
63 lines (58 loc) · 2.07 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
52
53
54
55
56
57
58
59
60
61
62
63
import { Icon } from '@pinback/design-system/icons';
import { ROUTES_CONFIG } from '@routes/routesConfig';
import { Link } from 'react-router-dom';
const Footer = () => {
const currentYear = new Date().getFullYear();
return (
<footer className="mt-auto w-full pb-[1.6rem] pr-[3rem]">
<div className="mt-[2.4rem] flex gap-[0.8rem]">
<Link
to={ROUTES_CONFIG.termsOfService.path}
className="caption1-sb text-font-gray-2 cursor-pointer hover:underline"
>
이용약관
</Link>
<p className="caption1-sb text-font-gray-2">|</p>
<Link
to={ROUTES_CONFIG.privacyPolicy.path}
className="caption1-sb text-font-gray-2 cursor-pointer hover:underline"
>
개인정보처리방침
</Link>
</div>
<div className="flex items-center justify-between">
<address className="flex gap-[0.8rem] not-italic">
<p className="caption2-sb text-font-ltgray-4">운영팀 문의</p>
<p className="caption2-m text-font-ltgray-4">
이한비 · pinback0615@gmail.com
</p>
</address>
<p className="caption2-m text-font-ltgray-4">
©{currentYear} pinback All rights reserved.
</p>
<div className="flex items-end gap-[1.2rem]">
<p className="caption2-m text-gray400">TEAM. 도묵이</p>
<a
href="https://instagram.com/pinback.today/"
target="_blank"
rel="noopener noreferrer"
aria-label="Pinback 인스타그램"
className="transition-opacity hover:opacity-80"
>
<Icon name="instagram" width={28} height={28} />
</a>
<a
href="https://pinback.palms.blog/"
target="_blank"
rel="noopener noreferrer"
aria-label="Pinback 블로그"
className="transition-opacity hover:opacity-80"
>
<Icon name="palms" width={28} height={28} />
</a>
</div>
</div>
</footer>
);
};
export default Footer;