Refactor and simplify component styles and text.
All checks were successful
forgejo/romanjaros/portfolio/pipeline/head This commit looks good

This commit is contained in:
Roman Jaroš 2025-02-27 20:44:36 +00:00
parent acd06acc83
commit 6246f0bef1
3 changed files with 4 additions and 10 deletions

View file

@ -13,8 +13,7 @@ export const AboutMe = () => {
<> <>
<section className="leading-snug text-slate-500 dark:text-slate-400"> <section className="leading-snug text-slate-500 dark:text-slate-400">
<p> <p>
Hello, my name is Roman Jaroš. I am {age}. <span className="underline dark:text-white decoration-pink-500"> Hello, my name is Roman Jaroš. I am {age}. <b>{work} years working as software engineer.</b>
{work} years working as software engineer.</span>{" "}
I have been programming since I was 15 years old and still love to learn new technologies. 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 programming world, I maintain servers with around 80 docker containers.
Outside of the IT world, I enjoy reading self improvement books, meditating, Outside of the IT world, I enjoy reading self improvement books, meditating,

View file

@ -8,14 +8,14 @@ export const Contact = () => {
<a <a
type="button" type="button"
href="mailto:sales@romanjaros.dev" href="mailto:sales@romanjaros.dev"
className="flex gap-2 focus:outline-none text-white bg-yellow-400 hover:bg-yellow-500 focus:ring-4 focus:ring-yellow-300 font-medium rounded-lg px-5 py-2.5 me-2 mb-2 dark:text-slate-600 dark:focus:ring-yellow-900"> 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">
<MailIcon/> Send e-mail <MailIcon/> Send e-mail
</a> </a>
<a <a
type="button" type="button"
target="_blank" target="_blank"
href="https://cloud.romanjaros.cz/s/HySLxskToRMxM6n" href="https://cloud.romanjaros.cz/s/HySLxskToRMxM6n"
className="flex gap-2 focus:outline-none text-white bg-green-400 hover:bg-green-500 focus:ring-4 focus:ring-green-300 font-medium rounded-lg px-5 py-2.5 me-2 mb-2 dark:text-slate-600 dark:focus:ring-green-900"> 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">
<ScrollTextIcon/> Download CV <ScrollTextIcon/> Download CV
</a> </a>
</p> </p>

View file

@ -2,12 +2,7 @@ export const Title = () => {
return ( return (
<div className="flex justify-center text-4xl sm:text-6xl my-8 text-slate-400"> <div className="flex justify-center text-4xl sm:text-6xl my-8 text-slate-400">
<h1> <h1>
<span>&lt;Just</span> Roman
<span
className="text-transparent bg-clip-text bg-gradient-to-r to-emerald-600 from-sky-400">
Roman {" "}
</span>
<span>/&gt;</span>
</h1> </h1>
</div> </div>
) )