From c9c085a651610c2ef95c3dc1c996d9f9a2f17900 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 18:53:40 +0000 Subject: [PATCH] Update components/how-it-works.tsx --- components/how-it-works.tsx | 49 +++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 components/how-it-works.tsx diff --git a/components/how-it-works.tsx b/components/how-it-works.tsx new file mode 100644 index 0000000..2b8b98f --- /dev/null +++ b/components/how-it-works.tsx @@ -0,0 +1,49 @@ +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Card, CardHeader, CardTitle, CardDescription } from "@/components/ui/card"; +import { CheckCircle2, Target, Zap } from "lucide-react"; + +const steps = [ + { + title: "Tentukan Goal", + description: "Beri tahu kami apa yang ingin kamu capai dalam karier atau skill teknismu.", + icon: , + }, + { + title: "Pilih Mentor", + description: "Dapatkan rekomendasi mentor terbaik yang sesuai dengan budget dan jadwalmu.", + icon: , + }, + { + title: "Mulai Sesi", + description: "Booking jadwal dan mulai sesi mentoring 1:1 yang intensif dan solutif.", + icon: , + }, +]; + +export function HowItWorks() { + return ( +
+ +
+ Cara Kerja Mentora + Hanya butuh 3 langkah mudah untuk memulai perjalanan transformasimu. +
+
+ {steps.map((step, index) => ( + + +
{step.icon}
+ {step.title} + + {step.description} + +
+
+ ))} +
+
+
+ ); +}