feat(footer): internationalize footer layout and remove directions section

- Remove #directions section and DirectionsBlock component from home page
- Translate Footer masthead brand titles to ANL and AI Agent Networking Lab
- Update Footer affiliated institution links to KNU, CSE, and College of IT Engineering
- Add advisor information (Prof. Seok-Joo Koh) and translate address to English
- Translate Footer quick navigation links and colophon/copyright text
- Update E2E test assertions for the updated footer layout and address
This commit is contained in:
2026-08-21 13:20:15 +09:00
parent 184ff8263c
commit b8f1a000fd
5 changed files with 49 additions and 202 deletions
+40 -18
View File
@@ -3,11 +3,11 @@ import Marquee from "@/components/Marquee";
// CUSTOMIZATION HOOK: replace address / email placeholders & colophon below.
const links = [
{ href: "/", ko: "홈", en: "Home" },
{ href: "/members", ko: "구성원", en: "Members" },
{ href: "/publications", ko: "논문", en: "Publications" },
{ href: "/lectures", ko: "강의", en: "Lectures" },
{ href: "/standardization", ko: "표준화", en: "Standardization" },
{ href: "/", en: "Home" },
{ href: "/members", en: "Members" },
{ href: "/publications", en: "Publications" },
{ href: "/lectures", en: "Lectures" },
{ href: "/standardization", en: "Standardization" },
];
export default function Footer() {
@@ -29,25 +29,48 @@ export default function Footer() {
{/* Masthead title */}
<div className="lg:col-span-5">
<p className="kicker text-ink-mute">Colophon</p>
<h3 className="headline-ko mt-3 text-2xl leading-snug text-ink">
AI
<h3 className="font-display mt-3 text-2xl leading-snug text-ink">
ANL
</h3>
<p className="font-display mt-1 text-xl italic text-ink-soft">
AI Agent Networking Lab (ANL)
</p>
<p className="mt-5 max-w-sm text-sm leading-relaxed text-ink-mute">
<br />
Kyungpook National University,<br />
School of Computer Science and Engineering
AI Agent Networking Lab
</p>
<div className="mt-5 flex flex-wrap gap-x-4 gap-y-1 text-xs font-mono text-cobalt-dark">
<a
href="https://www.knu.ac.kr/"
target="_blank"
rel="noopener noreferrer"
className="hover:underline"
>
KNU
</a>
<a
href="https://cse.knu.ac.kr/"
target="_blank"
rel="noopener noreferrer"
className="hover:underline"
>
CSE
</a>
<a
href="https://it.knu.ac.kr/"
target="_blank"
rel="noopener noreferrer"
className="hover:underline"
>
College of IT Engineering
</a>
</div>
</div>
{/* Contact */}
<div className="lg:col-span-4">
<p className="kicker text-ink-mute">Contact</p>
<address className="mt-3 not-italic text-sm leading-relaxed text-ink-soft">
(41566) 80<br />
IT대학 5(415) 527<br />
Prof. Seok-Joo Koh<br />
Room 527, Bldg. 415 (IT-5), College of IT Engineering<br />
Kyungpook National University<br />
80 Daehak-ro, Buk-gu, Daegu 41566, Republic of Korea<br />
<a
href="mailto:sjkoh@knu.ac.kr"
className="draw-underline mt-2 inline-block text-ink hover:text-vermillion-dark font-medium"
@@ -70,8 +93,7 @@ export default function Footer() {
href={l.href}
className="text-sm text-ink-soft transition hover:text-vermillion-dark"
>
{l.ko}{" "}
<span className="text-xs text-ink-mute">{l.en}</span>
{l.en}
</Link>
</li>
))}
@@ -82,7 +104,7 @@ export default function Footer() {
<div className="border-t border-line">
<div className="container-content flex flex-col gap-2 py-5 sm:flex-row sm:items-center sm:justify-between">
<p className="text-xs text-ink-mute">
© {new Date().getFullYear()} AI (ANL) · . All rights reserved.
© {new Date().getFullYear()} AI Agent Networking Lab (ANL) · School of Computer Science and Engineering, KNU. All rights reserved.
</p>
<p className="kicker text-ink-mute">Set in Fraunces · Noto Serif KR · Pretendard</p>
</div>