Skip to content

Commit 43eeff6

Browse files
committed
fix: adjust header sizes and update footer links
- Fix Philosophy header size: text-5xl md:text-7xl → text-3xl sm:text-4xl lg:text-5xl - Fix Working Principles header size: text-5xl md:text-7xl → text-3xl sm:text-4xl lg:text-5xl - Increase Philosophy subheader size: text-base → text-xl to match other sections - Update footer link labels to reflect new section names: - 'How we work' → 'Working Principles' - 'The team' → 'Our Team' - 'Tools' → 'Our Stack' - Update Korean footer translations accordingly - Ensure all footer links point to correct sections (no 404 errors) - Maintain consistent typography hierarchy across all sections
1 parent d936d06 commit 43eeff6

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

src/app/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ export default function Home() {
6464
<section id="philosophy" className="py-20 scroll-mt-24">
6565
<div className="max-w-7xl mx-auto px-8">
6666
<div className="text-center mb-16">
67-
<h2 className="text-5xl md:text-7xl font-bold mb-2 bg-gradient-to-r from-foreground to-muted-foreground bg-clip-text text-transparent">
67+
<h2 className="text-3xl sm:text-4xl lg:text-5xl font-bold mb-2 bg-gradient-to-r from-foreground to-muted-foreground bg-clip-text text-transparent">
6868
{t('philosophy.title')}
6969
</h2>
70-
<p className="text-base text-muted-foreground/70 font-medium">
70+
<p className="text-xl text-muted-foreground max-w-3xl mx-auto">
7171
{t('philosophy.subtitle')}
7272
</p>
7373
</div>

src/components/sections/Values.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ const Values = () => {
218218
<section className="py-20 px-4 sm:px-6 lg:px-8" ref={valuesSectionRef}>
219219
<div className="max-w-7xl mx-auto">
220220
<div className="text-center mb-16">
221-
<h2 className="text-5xl md:text-7xl font-bold mb-2 bg-gradient-to-r from-foreground to-muted-foreground bg-clip-text text-transparent">
221+
<h2 className="text-3xl sm:text-4xl lg:text-5xl font-bold mb-2 bg-gradient-to-r from-foreground to-muted-foreground bg-clip-text text-transparent">
222222
{t('values.title')}
223223
</h2>
224224
<p className="text-lg text-muted-foreground max-w-3xl mx-auto">

src/contexts/LanguageContext.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -184,9 +184,9 @@ const translations = {
184184
'footer.description': 'Empowering designers with the tools, resources, and knowledge needed to create exceptional user experiences.',
185185
'footer.foundations.mission': 'The Mission',
186186
'footer.foundations.philosophy': 'Our Mindset',
187-
'footer.foundations.values': 'How we work',
188-
'footer.foundations.team': 'The team',
189-
'footer.foundations.tools': 'Tools',
187+
'footer.foundations.values': 'Working Principles',
188+
'footer.foundations.team': 'Our Team',
189+
'footer.foundations.tools': 'Our Stack',
190190
'footer.brand.principles': 'Principles',
191191
'footer.brand.guidelines': 'Guidelines',
192192
'footer.brand.resources': 'Resources',
@@ -368,9 +368,9 @@ const translations = {
368368
'footer.description': '탁월한 사용자 경험을 만들기 위해 필요한 도구, 리소스, 지식으로 디자이너를 강화합니다.',
369369
'footer.foundations.mission': '미션',
370370
'footer.foundations.philosophy': '마인드셋',
371-
'footer.foundations.values': '우리가 일하는 방식',
372-
'footer.foundations.team': '팀',
373-
'footer.foundations.tools': '도구',
371+
'footer.foundations.values': '작업 원칙',
372+
'footer.foundations.team': '우리의 팀',
373+
'footer.foundations.tools': '우리의 스택',
374374
'footer.brand.principles': '원칙',
375375
'footer.brand.guidelines': '가이드라인',
376376
'footer.brand.resources': '리소스',

0 commit comments

Comments
 (0)