Fix text coloring

This commit is contained in:
Rene Arumetsa
2026-04-30 15:51:11 +03:00
parent 0ece12898f
commit 74eee5a30d
2 changed files with 6 additions and 6 deletions

View File

@@ -24,7 +24,7 @@ export default function HeroSection() {
{/* Left: logo + info + CTA */} {/* Left: logo + info + CTA */}
<div className="flex flex-col gap-5"> <div className="flex flex-col gap-5">
<Image <Image
src="/tipilan-white.svg" src="/tipilan-dark.svg"
width={750} width={750}
height={106} height={106}
alt="TipiLAN Logo" alt="TipiLAN Logo"
@@ -34,7 +34,7 @@ export default function HeroSection() {
<p className="text-[clamp(1.1rem,0.9rem+1vw,1.75rem)] text-[#00A3E0] uppercase tracking-wide"> <p className="text-[clamp(1.1rem,0.9rem+1vw,1.75rem)] text-[#00A3E0] uppercase tracking-wide">
{t("hero.date")} {t("hero.date")}
</p> </p>
<p className="text-[clamp(0.9rem,0.75rem+0.75vw,1.25rem)] text-[#EEE5E5]/80 uppercase tracking-wide"> <p className="text-[clamp(0.9rem,0.75rem+0.75vw,1.25rem)] text-[#EEE5E5] uppercase tracking-wide">
{t("hero.location")} {t("hero.location")}
</p> </p>
</div> </div>
@@ -49,7 +49,7 @@ export default function HeroSection() {
{/* Right: prize pool + award */} {/* Right: prize pool + award */}
<div className="flex flex-col items-start md:items-end gap-3"> <div className="flex flex-col items-start md:items-end gap-3">
<div className={`${vipnagorgialla.className} font-bold italic text-right`}> <div className={`${vipnagorgialla.className} font-bold italic text-right`}>
<p className="text-[clamp(1rem,0.8rem+1vw,1.5rem)] text-[#EEE5E5]/80 uppercase"> <p className="text-[clamp(1rem,0.8rem+1vw,1.5rem)] text-[#EEE5E5] uppercase">
{t("hero.prizePool")} {t("hero.prizePool")}
</p> </p>
<h2 className="text-[clamp(3rem,2rem+4vw,6rem)] leading-none text-[#00A3E0]"> <h2 className="text-[clamp(3rem,2rem+4vw,6rem)] leading-none text-[#00A3E0]">
@@ -64,7 +64,7 @@ export default function HeroSection() {
alt="TalTech student award" alt="TalTech student award"
className="object-contain" className="object-contain"
/> />
<p className={`text-[0.75rem] text-[#EEE5E5]/70 ${vipnagorgialla.className} font-bold italic uppercase text-right`}> <p className={`text-[0.75rem] text-[#EEE5E5] ${vipnagorgialla.className} font-bold italic uppercase text-right`}>
{t("hero.award")} {t("hero.award")}
</p> </p>
</div> </div>

View File

@@ -48,7 +48,7 @@ export default function TeaserCarousel() {
<div className="flex flex-col justify-between gap-4 px-8 py-8 md:px-12 md:py-10"> <div className="flex flex-col justify-between gap-4 px-8 py-8 md:px-12 md:py-10">
<div className="flex flex-col gap-3"> <div className="flex flex-col gap-3">
<h2 <h2
className={`${vipnagorgialla.className} font-bold italic text-[clamp(1.1rem,0.9rem+1vw,1.75rem)] text-[#EEE5E5]/70`} className={`${vipnagorgialla.className} font-bold italic text-[clamp(1.1rem,0.9rem+1vw,1.75rem)] text-[#EEE5E5]`}
> >
{t("heading")} {t("heading")}
</h2> </h2>
@@ -59,7 +59,7 @@ export default function TeaserCarousel() {
{title} {title}
</h3> </h3>
</Link> </Link>
<p className="text-[clamp(0.875rem,0.75rem+0.5vw,1.1rem)] text-[#EEE5E5]/80 max-w-prose"> <p className="text-[clamp(0.875rem,0.75rem+0.5vw,1.1rem)] text-[#EEE5E5] max-w-prose">
{description} {description}
</p> </p>
</div> </div>