Update src/app/en/timeline/page.tsx

This commit is contained in:
2026-06-10 06:18:03 +00:00
parent 2c43b59e18
commit a28a691c90

View File

@@ -26,35 +26,21 @@ export default function LandingPage() {
<NavbarStyleFullscreen <NavbarStyleFullscreen
navItems={[ navItems={[
{ {
name: "Home", name: "Home", id: "home"},
id: "home",
},
{ {
name: "About", name: "About", id: "about"},
id: "about",
},
{ {
name: "Career", name: "Career", id: "career"},
id: "career",
},
{ {
name: "Timeline", name: "Timeline", id: "timeline"},
id: "timeline",
},
{ {
name: "Gallery", name: "Gallery", id: "gallery"},
id: "gallery",
},
{ {
name: "Legacy", name: "Legacy", id: "legacy"},
id: "legacy",
},
]} ]}
brandName="Susan Ahn Cuddy" brandName="Susan Ahn Cuddy"
button={{ button={{
text: "Language", text: "Language", href: "#"}}
href: "#",
}}
/> />
</div> </div>
@@ -65,47 +51,17 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
features={[ features={[
{ {
id: "birth-en", id: "birth-en", title: "Birth", subtitle: "Born in Los Angeles", category: "Personal", value: "1915"},
title: "Birth",
subtitle: "Born in Los Angeles",
category: "Personal",
value: "1915",
},
{ {
id: "navy-enlistment-en", id: "navy-enlistment-en", title: "Navy Enlistment", subtitle: "Joined US Navy WAVES", category: "Military", value: "1942"},
title: "Navy Enlistment",
subtitle: "Joined US Navy WAVES",
category: "Military",
value: "1942",
},
{ {
id: "marriage-timeline-en", id: "marriage-timeline-en", title: "Marriage", subtitle: "Interracial marriage to Frank Cuddy", category: "Personal", value: "1947"},
title: "Marriage",
subtitle: "Interracial marriage to Frank Cuddy",
category: "Personal",
value: "1947",
},
{ {
id: "nsa-join-en", id: "nsa-join-en", title: "Joined NSA", subtitle: "Served as an intelligence agent for the National Security Agency", category: "Intelligence", value: "1956"},
title: "Joined NSA",
subtitle: "Served as an intelligence agent for the National Security Agency",
category: "Intelligence",
value: "1956",
},
{ {
id: "restaurant-open-en", id: "restaurant-open-en", title: "Restaurant Opening", subtitle: "Operated An's Oriental Tea Room", category: "Business", value: "1950s"},
title: "Restaurant Opening",
subtitle: "Operated An's Oriental Tea Room",
category: "Business",
value: "1950s",
},
{ {
id: "passing-en", id: "passing-en", title: "Passing", subtitle: "Passed away at the age of 100", category: "Personal", value: "2015"},
title: "Passing",
subtitle: "Passed away at the age of 100",
category: "Personal",
value: "2015",
},
]} ]}
title="Key Milestones" title="Key Milestones"
description="Overview of Susan Ahn Cuddy's major life events, contextualized with historical backgrounds like WWII and the Cold War." description="Overview of Susan Ahn Cuddy's major life events, contextualized with historical backgrounds like WWII and the Cold War."
@@ -123,12 +79,7 @@ export default function LandingPage() {
tag="Era Significance" tag="Era Significance"
blogs={[ blogs={[
{ {
id: "korean-diaspora-en", id: "korean-diaspora-en", category: "Immigration History", title: "Early Korean Immigrant Community", excerpt: "The Korean community in Los Angeles during the 1910s-30s, where Susan Ahn Cuddy grew up.", imageSrc: "http://img.b2bpic.net/free-photo/view-mode-laughter-joy-air-relationship_1303-3349.jpg", imageAlt: "", authorName: "Historian A", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-ancient-greece-woman_23-2151026672.jpg", date: "1910-1930s"
category: "Immigration History",
title: "Early Korean Immigrant Community",
excerpt: "The Korean community in Los Angeles during the 1910s-30s, where Susan Ahn Cuddy grew up.",
imageSrc: "http://img.b2bpic.net/free-photo/view-mode-laughter-joy-air-relationship_1303-3349.jpg",
imageAlt: "",
}, },
]} ]}
/> />
@@ -138,71 +89,43 @@ export default function LandingPage() {
<FooterBase <FooterBase
columns={[ columns={[
{ {
title: "생애", title: "생애", items: [
items: [
{ {
label: "초기 생애", label: "초기 생애", href: "/ko/about"},
href: "/ko/about",
},
{ {
label: "가족 생활", label: "가족 생활", href: "/ko/about#family"},
href: "/ko/about#family",
},
{ {
label: "주요 연대기", label: "주요 연대기", href: "/ko/timeline"},
href: "/ko/timeline",
},
], ],
}, },
{ {
title: "경력", title: "경력", items: [
items: [
{ {
label: "군 복무", label: "군 복무", href: "/ko/career"},
href: "/ko/career",
},
{ {
label: "정보국 활동", label: "정보국 활동", href: "/ko/career"},
href: "/ko/career",
},
{ {
label: "민간 활동", label: "민간 활동", href: "/ko/career"},
href: "/ko/career",
},
], ],
}, },
{ {
title: "유산", title: "유산", items: [
items: [
{ {
label: "영향력", label: "영향력", href: "/ko/legacy"},
href: "/ko/legacy",
},
{ {
label: "증언", label: "증언", href: "/ko/legacy#testimonials"},
href: "/ko/legacy#testimonials",
},
{ {
label: "갤러리", label: "갤러리", href: "/ko/gallery"},
href: "/ko/gallery",
},
], ],
}, },
{ {
title: "연결", title: "연결", items: [
items: [
{ {
label: "자주 묻는 질문", label: "자주 묻는 질문", href: "/ko/legacy#faq"},
href: "/ko/legacy#faq",
},
{ {
label: "문의", label: "문의", href: "#"},
href: "#",
},
{ {
label: "개인정보 처리방침", label: "개인정보 처리방침", href: "#"},
href: "#",
},
], ],
}, },
]} ]}