Skip to content

Commit 6106bbb

Browse files
committed
refactor: redesign footer with address, email, and compact layout
1 parent 187abed commit 6106bbb

File tree

1 file changed

+36
-20
lines changed

1 file changed

+36
-20
lines changed

components/layout/footer.tsx

Lines changed: 36 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,42 @@ import Link from "next/link";
22

33
export function Footer() {
44
return (
5-
<footer className="w-full border-t border-[#3c494e]/15 bg-[#131313] flex flex-col md:flex-row justify-between items-center px-6 md:px-12 py-16">
6-
<div className="text-lg font-black text-primary mb-8 md:mb-0">
7-
MOLGORITHM
8-
</div>
9-
<div className="font-label text-[10px] tracking-widest uppercase text-outline mb-8 md:mb-0">
10-
&copy; {new Date().getFullYear()} MOLGORITHM. YONSEI ALGORITHM CIRCLE.
11-
</div>
12-
<div className="flex gap-8">
13-
<Link
14-
href="/join"
15-
className="font-label text-[10px] tracking-widest uppercase text-outline hover:text-white transition-colors"
16-
>
17-
JOIN
18-
</Link>
19-
<Link
20-
href="/donate"
21-
className="font-label text-[10px] tracking-widest uppercase text-outline hover:text-white transition-colors"
22-
>
23-
DONATE
24-
</Link>
5+
<footer className="w-full bg-[#131313] border-t border-[#3c494e]/15 px-6 md:px-12 py-8">
6+
<div className="flex flex-col md:flex-row justify-between gap-8">
7+
<div>
8+
<div className="text-lg font-black text-primary mb-3">
9+
MOLGORITHM
10+
</div>
11+
<div className="space-y-1">
12+
<p className="text-xs text-outline">
13+
서울특별시 서대문구 연세로 50 제1공학관 A527 /{" "}
14+
<a
15+
href="mailto:[email protected]"
16+
className="hover:text-white transition-colors"
17+
>
18+
19+
</a>
20+
</p>
21+
<p className="font-label text-[10px] tracking-widest uppercase text-outline">
22+
&copy; {new Date().getFullYear()} MOLGORITHM. YONSEI ALGORITHM
23+
CLUB.
24+
</p>
25+
</div>
26+
</div>
27+
<div className="flex gap-8">
28+
<Link
29+
href="/join"
30+
className="font-label text-[10px] tracking-widest uppercase text-outline hover:text-white transition-colors"
31+
>
32+
JOIN
33+
</Link>
34+
<Link
35+
href="/donate"
36+
className="font-label text-[10px] tracking-widest uppercase text-outline hover:text-white transition-colors"
37+
>
38+
DONATE
39+
</Link>
40+
</div>
2541
</div>
2642
</footer>
2743
);

0 commit comments

Comments
 (0)