From b7ba4d1a05dd7888f892b6a7c2290f0b42b14354 Mon Sep 17 00:00:00 2001 From: kubgus Date: Wed, 19 Jun 2024 03:02:09 +0200 Subject: [PATCH] Add content to walls --- src/pages/index.astro | 48 +++++++++++++++++++++++++++++++--- src/pages/projects/index.astro | 4 +-- 2 files changed, 46 insertions(+), 6 deletions(-) diff --git a/src/pages/index.astro b/src/pages/index.astro index adc36ed..6a8d36a 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -7,13 +7,53 @@ import "../styles/default-padding.css"; const generalSkillCards = [ { - title: "Linux", - description: "I use Linux on a daily basis for work, but also for personal use. I know my way around the terminal and I can solve most Linux-related problems. Most of all, I enjoy using Linux for its simplicity, customization and the fact that it's open-source. I use Arch, by the way... ;)" + title: "WIP", + description: "This wall is still work in progress. Please look at my LinkedIn profile for more accurate information." + }, + { + title: "C & C++", + description: "Advanced (and latest) C++ knowledge, confidence with pointers and memory management." + }, + { + title: "C#", + description: "Software development experience with C#. Multiple game engines created." + }, + { + title: "Git", + description: "Advanced knowledge of Git. Understanding of branches, remotes and most Git commands." + }, + { + title: "NodeJS and NPM", + description: "Advanced understanding of NodeJS and NPM." + }, + { + title: "Javascript & Typescript", + description: "Deep understanding of JS and TS. Most of my web projects are based around or at least contain JS.", + }, + { + title: "ExpressJS", + description: "Skills with API and backend development in Express." + }, + { + title: "CSS", + description: "I can confidently replicate any design with CSS. I am familiar with most properties and selectors." + }, + { + title: "NuxtJS & Vue", + description: "Multiple hobby projects in Nuxt, most notably Heystack." + }, + { + title: "Language Skills", + description: "Slovak (native), English (bilingual), German (A2)." }, { title: "NeoVim", - description: "I use NeoVim with Linux to get the best performance and speed while coding. I also have my custom config file loaded with extensions and custom bindings that make my text editor tasks seem trivial." - } + description: "Preffered text editor." + }, + { + title: "Linux", + description: "Preffered operating system." + }, ]; const title = "Jakub Gustafik"; diff --git a/src/pages/projects/index.astro b/src/pages/projects/index.astro index b2d5c32..fd52cf5 100644 --- a/src/pages/projects/index.astro +++ b/src/pages/projects/index.astro @@ -6,8 +6,8 @@ import "../../styles/default-padding.css"; const activeProjectCards = [ { - title: "Work in progress...", - description: "business@gustafik.com" + title: "WIP", + description: "Project are still work in progress. Look at my GitHub profile to find more information about my work." } ]; ---