pramudya-yb commited on
Commit ·
b3fba22
1
Parent(s): abdb08c
Simplify landing page UI
Browse files
apps/web/src/components/routes/LandingPage.tsx
CHANGED
|
@@ -30,51 +30,27 @@ export function LandingPage() {
|
|
| 30 |
</div>
|
| 31 |
</nav>
|
| 32 |
|
| 33 |
-
<main className="flex-1 flex flex-col items-center justify-center w-full relative">
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
<
|
| 38 |
-
<MaterialIcon name="auto_awesome" className="text-sm" />
|
| 39 |
-
<span>Didukung oleh AI Generative</span>
|
| 40 |
-
</div>
|
| 41 |
-
|
| 42 |
-
<h1 className="text-[50px] md:text-[70px] lg:text-[85px] font-headline font-semibold text-[var(--clay-black)] tracking-[-2.4px] lg:tracking-[-3.2px] leading-[1.0] lg:leading-[0.95] drop-shadow-sm">
|
| 43 |
-
Platform Latihan Bahasa Cerdas.
|
| 44 |
-
</h1>
|
| 45 |
-
|
| 46 |
-
<p className="text-xl md:text-2xl text-[var(--warm-charcoal)] max-w-2xl mx-auto xl:mx-0 leading-relaxed">
|
| 47 |
-
Persiapkan dirimu untuk ujian bahasa asing dengan latihan soal interaktif, mock test realistis, dan AI Generator super cepat.
|
| 48 |
-
</p>
|
| 49 |
-
|
| 50 |
-
<div className="flex flex-col sm:flex-row items-center gap-4 justify-center xl:justify-start pt-6">
|
| 51 |
-
<Link to="/login" className="w-full sm:w-auto">
|
| 52 |
-
<Button className="w-full sm:w-auto bg-[var(--pure-white)] text-[var(--clay-black)] rounded-[24px] h-[64px] px-8 text-xl font-semibold border-2 border-[var(--oat-border)] clay-shadow clay-hover">
|
| 53 |
-
Mulai Latihan Sekarang
|
| 54 |
-
</Button>
|
| 55 |
-
</Link>
|
| 56 |
-
</div>
|
| 57 |
</div>
|
| 58 |
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
<
|
| 72 |
-
|
| 73 |
-
</div>
|
| 74 |
-
<div className="absolute top-[40%] -left-16 md:-left-24 w-24 md:w-32 h-auto z-0 hidden lg:block opacity-80 blur-[1px]">
|
| 75 |
-
<img src="/progress.png" alt="floating element" className="w-full h-auto drop-shadow-xl" />
|
| 76 |
-
</div>
|
| 77 |
-
</div>
|
| 78 |
</div>
|
| 79 |
</section>
|
| 80 |
</main>
|
|
|
|
| 30 |
</div>
|
| 31 |
</nav>
|
| 32 |
|
| 33 |
+
<main className="flex-1 flex flex-col items-center justify-center w-full relative px-6 md:px-12 py-12">
|
| 34 |
+
<section className="w-full max-w-4xl mx-auto flex flex-col items-center text-center space-y-8 z-10">
|
| 35 |
+
<div className="inline-flex items-center gap-2 px-4 py-2 rounded-full bg-[var(--matcha-300)] border-2 border-[var(--matcha-800)] text-[var(--clay-black)] uppercase-label shadow-sm transform -rotate-2">
|
| 36 |
+
<MaterialIcon name="auto_awesome" className="text-sm" />
|
| 37 |
+
<span>Didukung oleh AI Generative</span>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38 |
</div>
|
| 39 |
|
| 40 |
+
<h1 className="text-[50px] md:text-[70px] lg:text-[85px] font-headline font-semibold text-[var(--clay-black)] tracking-[-2.4px] lg:tracking-[-3.2px] leading-[1.0] lg:leading-[0.95] drop-shadow-sm">
|
| 41 |
+
Platform Latihan Bahasa Cerdas.
|
| 42 |
+
</h1>
|
| 43 |
+
|
| 44 |
+
<p className="text-xl md:text-2xl text-[var(--warm-charcoal)] max-w-2xl mx-auto leading-relaxed">
|
| 45 |
+
Persiapkan dirimu untuk ujian bahasa asing dengan latihan soal interaktif, mock test realistis, dan AI Generator super cepat.
|
| 46 |
+
</p>
|
| 47 |
+
|
| 48 |
+
<div className="flex flex-col sm:flex-row items-center gap-4 justify-center pt-6 w-full sm:w-auto">
|
| 49 |
+
<Link to="/login" className="w-full sm:w-auto">
|
| 50 |
+
<Button className="w-full sm:w-auto bg-[var(--clay-black)] text-[var(--pure-white)] hover:bg-[var(--dark-charcoal)] rounded-[24px] h-[64px] px-10 text-xl font-semibold border-2 border-[var(--clay-black)] clay-shadow clay-hover">
|
| 51 |
+
Mulai Latihan Sekarang
|
| 52 |
+
</Button>
|
| 53 |
+
</Link>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 54 |
</div>
|
| 55 |
</section>
|
| 56 |
</main>
|