From 4105d99f40962ccbb19e2dd8fe8de40a9d144b43 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 | 2 +- src/app/components/Contact.tsx | 4 ++-- src/app/components/Title.tsx | 7 +------ 3 files changed, 4 insertions(+), 9 deletions(-) diff --git a/src/app/components/AboutMe.tsx b/src/app/components/AboutMe.tsx index ad4db41..e7c39f8 100644 --- a/src/app/components/AboutMe.tsx +++ b/src/app/components/AboutMe.tsx @@ -13,7 +13,7 @@ export const AboutMe = () => { <>

- Hello, my name is Roman Jaroš. I am {age}. + 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. 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

)