Reduce size of helpdesk bg pic and mentor page changes

This commit is contained in:
2026-02-25 23:52:32 +02:00
parent 89778446a6
commit 39a8ca498b
2 changed files with 4 additions and 37 deletions

View File

@@ -46,11 +46,11 @@
<!-- Hero Section --> <!-- Hero Section -->
<div class="w-full bg-black"> <div class="w-full bg-black">
<div class="flex absolute justify-center items-center flex-row w-full h-[60vh] px-4"> <div class="flex absolute justify-center items-center flex-row w-full h-[42vh] px-4">
<img src={helpdesk} alt={$text["hero"]?.title || "Helpdesk logo"} class="z-10" /> <img src={helpdesk} alt={$text["hero"]?.title || "Helpdesk logo"} class="z-10" />
</div> </div>
<img <img
class="h-[60vh] object-cover object-left w-full opacity-50 blur-[1.5px]" class="h-[42vh] object-cover object-left w-full opacity-50 blur-[1.5px]"
src={helpdeskbg} src={helpdeskbg}
alt="Helpdesk" alt="Helpdesk"
/> />
@@ -59,7 +59,7 @@
<!-- Main Content --> <!-- Main Content -->
<Container> <Container>
<Section> <Section>
<Grid columns="2" gap="var(--space-5)"> <Grid min="480px" gap="var(--space-5)">
<!-- What is HELPDESK? --> <!-- What is HELPDESK? -->
<div class="flex flex-col"> <div class="flex flex-col">
<h2 class="text-4xl font-light pb-4">{$text["whatIs"]?.title || ""}</h2> <h2 class="text-4xl font-light pb-4">{$text["whatIs"]?.title || ""}</h2>

View File

@@ -52,8 +52,7 @@
<div class="text-center max-w-4xl"> <div class="text-center max-w-4xl">
<h1 class="text-5xl font-bold mb-6">Meie Mentorid</h1> <h1 class="text-5xl font-bold mb-6">Meie Mentorid</h1>
<p class="text-2xl leading-relaxed"> <p class="text-2xl leading-relaxed">
Kogenud tudengid, kes aitavad sind areneda ja jagavad oma Lapikud, kes on alati valmis olema sinu toeks nii õpingutes kui ka isiklikus arengus ja kellega on lihtsalt tore koos aega veeta.
teadmisi
</p> </p>
</div> </div>
</Center> </Center>
@@ -61,15 +60,6 @@
<!-- Mentors Grid --> <!-- Mentors Grid -->
<Section> <Section>
<div class="text-center mb-12">
<h2 class="text-4xl font-bold mb-4">
Tutvuge meie mentorite meeskonnaga
</h2>
<p class="text-xl text-gray-600">
Igaüks neist on spetsialist omas valdkonnas ja valmis sind aitama
</p>
</div>
<div class="flex flex-col gap-8"> <div class="flex flex-col gap-8">
{#each mentors as mentor} {#each mentors as mentor}
<div> <div>
@@ -188,26 +178,3 @@
</div> </div>
</Section> </Section>
<!-- Become a Mentor Section -->
<Section background="neutral">
<Center>
<Card variant="glass" class="max-w-3xl">
<h2 class="text-4xl font-bold mb-6 text-center">
Taha saada mentoriks?
</h2>
<p class="text-lg text-center mb-6">
Kui oled kogenud tudeng ja soovid jagada oma teadmisi ning
aidata uusi liikmeid, siis võta meiega ühendust!
</p>
<div class="text-center">
<a
href="mailto:lapikud@lapikud.ee"
class="inline-block px-8 py-3 bg-orange-500 hover:bg-orange-600 text-white font-semibold rounded-lg transition-colors"
>
Võta ühendust
</a>
</div>
</Card>
</Center>
</Section>