Skip to content

Commit 7bfc737

Browse files
committed
fixed font sizes for terminal animations.
1 parent e636d5a commit 7bfc737

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/components/sections/AboutSection.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ interface AboutContent {
3333
// Typing animation content
3434
const typingContent = [
3535
{ greeting: "Welcome to my digital living room!", color: "text-primary-blue" },
36-
{ intro: "Thanks for taking a look around!", color: "text-primary-green"},
36+
{ intro: "Thanks for taking a look around!", color: "text-green-400"},
3737
{ intro: "Here you'll find fun facts and stories that shaped me and the quirks that make me... well, me!", color: "text-primary-sunset-orange" },
38-
{ body: "Click the buttons below to discover what makes me tick beyond just lines of code.", color: "text-primary-yellow" },
38+
{ body: "Click the buttons below and get to know me!", color: "text-primary-yellow" },
3939
{ narrative: "Go on then! Enjoy!", color: "text-primary-magenta" }
4040
];
4141

src/lib/utils.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,13 @@ export function getTypingFontSize(lineType: 'greeting' | 'intro' | 'body' | 'nar
9090
case 'greeting':
9191
return "text-2xl md:text-2xl lg:text-3xl font-bold";
9292
case 'intro':
93-
return "text-1xl md: text-1xl lg:text-2xl font-bold";
93+
return "text-2xl font-bold";
9494
case 'body':
95+
return "text-2xl font-bold";
9596
case 'narrative':
97+
return "text-2xl font-bold";
9698
default:
97-
return "text-lxl font-bold";
99+
return "text-2xl font-bold";
98100
}
99101
}
100102

0 commit comments

Comments
 (0)