Page Updates

This commit is contained in:
2025-12-04 03:28:50 +00:00
parent 4202a22403
commit 6461d7ceb5
3 changed files with 4 additions and 3 deletions

View File

@@ -41,6 +41,7 @@ export const projects: Project[] = [
name: 'Pkit', name: 'Pkit',
description: 'CLI toolkit and utilities (Rust project) — small developer-focused CLI.', description: 'CLI toolkit and utilities (Rust project) — small developer-focused CLI.',
tech: ['Rust', 'CLI'], tech: ['Rust', 'CLI'],
live: 'https://pkit.sirblob.co/',
github: 'https://github.com/dead-projects-inc/pkit-cli', github: 'https://github.com/dead-projects-inc/pkit-cli',
image: 'https://icons.veryicon.com/png/o/business/vscode-program-item-icon/rust-1.png', image: 'https://icons.veryicon.com/png/o/business/vscode-program-item-icon/rust-1.png',
featured: false featured: false

View File

@@ -29,7 +29,7 @@ const hobbies = [
}, },
{ {
name: 'Robotics', name: 'Robotics',
description: 'Building and programming robots to solve problems is a fascinating challenge.', description: 'Building and programming robots to solve problems is fun.',
icon: 'proicons:robot' icon: 'proicons:robot'
} }
] ]

View File

@@ -19,9 +19,9 @@ export const lines: TerminalLine[] = [
children: [ children: [
// User info // User info
{ type: 'header', content: `(&bold)${user.name}(&)` }, { type: 'header', content: `(&bold)${user.name}(&)` },
{ type: 'info', content: `(&accent)${user.title}(&)` }, { type: 'info', content: `(&accent)B.S. Computer Science Student(&)` },
{ type: 'output', content: `(&white)Location:(&) (&primary)${user.location}(&)` }, { type: 'output', content: `(&white)Location:(&) (&primary)${user.location}(&)` },
{ type: 'output', content: `(&muted)${user.bio}(&)` }, { type: 'output', content: `(&muted)My passion is using Computer Science with practical Engineering to enhance technology for the future.(&)` },
] ]
}, },