-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFooter.tsx
More file actions
73 lines (67 loc) · 2.56 KB
/
Footer.tsx
File metadata and controls
73 lines (67 loc) · 2.56 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
64
65
66
67
68
69
70
71
72
73
import { Icon } from '@pinback/design-system/icons';
const Footer = () => {
const currentYear = new Date().getFullYear();
return (
<footer className="border-gray100 absolute bottom-0 w-full border-t-2 px-[8rem] py-[3.2rem]">
<Icon
name="logo"
aria-label="Pinback 로고"
className="h-[2.8rem] w-[10.1rem]"
/>
<div className="relative mt-[1.2rem] flex items-center justify-between">
<div className="flex gap-[2.4rem]">
<div className="flex gap-[0.8rem]">
<a
href="https://right-turquoise-268.notion.site/pinback-2c527450eb1c80eca220c1de3293e43a?source=copy_link"
target="_blank"
rel="noopener noreferrer"
className="caption1-sb text-font-gray-2 cursor-pointer hover:underline"
>
이용약관
</a>
<p className="caption1-sb text-font-gray-2">|</p>
<a
href=" https://right-turquoise-268.notion.site/pinback-2c527450eb1c804390effb2ee32072b2?source=copy_link"
target="_blank"
rel="noopener noreferrer"
className="caption1-sb text-font-gray-2 cursor-pointer hover:underline"
>
개인정보처리방침
</a>
</div>
<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>
</div>
<p className="caption2-m text-font-ltgray-4 absolute left-1/2 -translate-x-1/2 transform">
©{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;