portfolio/src/app/components/Title.tsx
Roman Jaroš 254eaaef59
All checks were successful
forgejo/romanjaros/portfolio/pipeline/head This commit looks good
Update layout styles and improve component readability
2025-01-15 19:36:28 +00:00

14 lines
No EOL
331 B
TypeScript

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