From e33ba2640fe852967a4bf0cd6d58044bb08df48e Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 18:29:15 +0000 Subject: [PATCH] Update app/mentors/[id]/page.tsx --- app/mentors/[id]/page.tsx | 144 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 144 insertions(+) create mode 100644 app/mentors/[id]/page.tsx diff --git a/app/mentors/[id]/page.tsx b/app/mentors/[id]/page.tsx new file mode 100644 index 0000000..b998477 --- /dev/null +++ b/app/mentors/[id]/page.tsx @@ -0,0 +1,144 @@ +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Button } from "@/components/ui/button"; +import { Card, CardContent } from "@/components/ui/card"; +import { Badge } from "@/components/badge"; +import { Star, Calendar, Clock, Award, MessageSquare, CheckCircle } from "lucide-react"; +import Link from "next/link"; + +export default function MentorProfilePage() { + // Mock data for a single mentor + const mentor = { + name: "Budi Santoso", + role: "Senior Product Manager at GoTo", + image: "https://i.pravatar.cc/300?u=budi", + rating: 4.9, + sessions: 120, + price: "Rp 250.000", + bio: "Saya memiliki pengalaman lebih dari 8 tahun di bidang Product Management. Telah membantu puluhan mentee masuk ke top tech companies di Indonesia. Fokus saya adalah membantu kamu memahami product mindset dan persiapan interview yang efektif.", + specialties: ["Product Strategy", "Career Growth", "Interview Prep", "Stakeholder Management"], + successStory: "Membantu seorang Junior PM naik level menjadi Senior PM dalam waktu 6 bulan melalui mentoring intensif.", + }; + + return ( +
+ +
+ {/* Left Column: Profile Info */} +
+ + +
+
+
+ {mentor.name} +
+
+
+ {mentor.name} +

{mentor.role}

+
+
+ + {mentor.rating} + ({mentor.sessions} sesi) +
+
+ + Top Mentor 2023 +
+
+
+
+ +
+
+
+ + + +
+
+

Tentang Mentor

+

+ {mentor.bio} +

+
+ +
+

Spesialisasi

+
+ {mentor.specialties.map(s => ( + + {s} + + ))} +
+
+ +
+

Success Story

+
+ +

"{mentor.successStory}"

+
+
+
+
+ + {/* Right Column: Booking Card */} +
+ + +
+
Investasi per sesi
+
{mentor.price}
+
+ +
+
+ + Durasi 60 Menit +
+
+ + Jadwal Fleksibel +
+
+ + + +

+ Pembayaran aman & garansi uang kembali jika sesi tidak berjalan. +

+ +
+

Ketersediaan Terdekat

+
+
+ Besok, 19:00 + Tersedia +
+
+ Kamis, 20:00 + Tersedia +
+
+
+
+
+
+
+ +
+ ); +}