From 6246f0bef16c973c6b7acffa11d69765b141934e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Jaro=C5=A1?= Date: Thu, 27 Feb 2025 20:44:36 +0000 Subject: [PATCH] Refactor and simplify component styles and text. --- src/app/components/AboutMe.tsx | 3 +-- src/app/components/Contact.tsx | 4 ++-- src/app/components/Title.tsx | 7 +------ 3 files changed, 4 insertions(+), 10 deletions(-) diff --git a/src/app/components/AboutMe.tsx b/src/app/components/AboutMe.tsx index ad4db41..eb8984c 100644 --- a/src/app/components/AboutMe.tsx +++ b/src/app/components/AboutMe.tsx @@ -13,8 +13,7 @@ export const AboutMe = () => { <>

- Hello, my name is Roman Jaroš. I am {age}. - {work} years working as software engineer.{" "} + Hello, my name is Roman Jaroš. I am {age}. {work} years working as software engineer. I have been programming since I was 15 years old and still love to learn new technologies. Outside of the programming world, I maintain servers with around 80 docker containers. Outside of the IT world, I enjoy reading self improvement books, meditating, diff --git a/src/app/components/Contact.tsx b/src/app/components/Contact.tsx index 51fdecb..006fbe4 100644 --- a/src/app/components/Contact.tsx +++ b/src/app/components/Contact.tsx @@ -8,14 +8,14 @@ export const Contact = () => { + className="flex gap-2 focus:outline-none font-medium rounded-lg px-5 py-2.5 me-2 mb-2 text-yellow-600 dark:bg-transparent"> Send e-mail + className="flex gap-2 focus:outline-none font-medium rounded-lg px-5 py-2.5 me-2 mb-2 text-pink-600 dark:bg-transparent"> Download CV

diff --git a/src/app/components/Title.tsx b/src/app/components/Title.tsx index c870007..bb5f51e 100644 --- a/src/app/components/Title.tsx +++ b/src/app/components/Title.tsx @@ -2,12 +2,7 @@ export const Title = () => { return (

- <Just - - Roman {" "} - - /> + Roman

)