FIX: No more long text blocks under the skills.

This commit is contained in:
Hayden Hargreaves 2025-03-11 20:44:44 -07:00
parent 3447b0183b
commit 900429b21b

View File

@ -10,65 +10,62 @@
const skills: SkillData[] = [ const skills: SkillData[] = [
{ {
title: 'Javascript', title: 'Javascript',
description: 'Frontend web development and basic backend development using Node.js.', description: 'Frontend web development',
rating: 3 rating: 3
}, },
{ {
title: 'Typescript', title: 'Typescript',
description: 'Javascript with static typing and additional features.', description: 'Fullstack web development',
rating: 3 rating: 3
}, },
{ {
title: 'Python', title: 'Python',
description: 'Dynamic language used for data analysis and machine learning.', description: 'Backend & scripting',
rating: 4 rating: 4
}, },
{ {
title: 'Go', title: 'Go',
description: 'All purpose language for backend web development and systems programming.', description: 'Backend & systems development',
rating: 5 rating: 5
}, },
{ {
title: 'Lua', title: 'Lua',
description: 'Simple configuration language used for Neovim and other applications.', description: 'Configuration',
rating: 2 rating: 2
}, },
{ {
title: 'SQL', title: 'SQL',
description: description: 'Database query language',
'Database query language used for data storage and retrieval in relational databases.',
rating: 3 rating: 3
}, },
{ {
title: 'C', title: 'C',
description: description: 'Systems & embedded programming',
'Low level systems programming language used for operating systems and embedded systems.',
rating: 3 rating: 3
}, },
{ {
title: 'C++', title: 'C++',
description: description: 'Systems & embedded programming',
'Object oriented programming language used for game development and systems programming.',
rating: 2 rating: 2
}, },
{ {
title: 'HTML & CSS', title: 'HTML & CSS',
description: 'Web markup and styling languages used for frontend web development.', description: 'Frontend web development',
rating: 5 rating: 5
}, },
{ {
title: 'Zig', title: 'Zig',
description: 'Systems programming language with a focus on safety and performance.', description: 'Systems & embedded programming',
rating: 2 rating: 2
}, },
{ {
title: 'Nix', title: 'Nix',
description: 'Functional package manager used for declarative system configuration.', description: 'Operating system & other configuration',
rating: 4 rating: 4
}, },
{ {
title: 'Java', title: 'Java',
description: 'Object oriented programming language used for development on all platforms.', description: 'Backend development',
rating: 3 rating: 3
} }
]; ];