From 2d2cf46f0cd173ea06123ccc29ed960d4472d233 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 18:28:17 +0000 Subject: [PATCH] Update app/mentors/page.tsx --- app/mentors/page.tsx | 139 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 139 insertions(+) create mode 100644 app/mentors/page.tsx diff --git a/app/mentors/page.tsx b/app/mentors/page.tsx new file mode 100644 index 0000000..4112375 --- /dev/null +++ b/app/mentors/page.tsx @@ -0,0 +1,139 @@ +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 { Input } from "@/components/ui/input"; +import { Star, Filter, Search, Calendar } from "lucide-react"; +import Link from "next/link"; + +const mentors = [ + { + id: 1, + name: "Budi Santoso", + role: "Senior Product Manager at GoTo", + image: "https://i.pravatar.cc/150?u=budi", + rating: 4.9, + sessions: 120, + price: "Rp 250.000", + tags: ["Product Strategy", "Career Growth"], + match: "98% Cocok", + available: "Besok, 19:00", + }, + { + id: 2, + name: "Siska Putri", + role: "Lead UX Designer at Traveloka", + image: "https://i.pravatar.cc/150?u=siska", + rating: 5.0, + sessions: 85, + price: "Rp 300.000", + tags: ["UI/UX", "Portfolio Review"], + match: "95% Cocok", + available: "Kamis, 10:00", + }, + { + id: 3, + name: "Andi Wijaya", + role: "Senior Software Engineer at Shopee", + image: "https://i.pravatar.cc/150?u=andi", + rating: 4.8, + sessions: 210, + price: "Rp 350.000", + tags: ["Backend", "System Design"], + match: "92% Cocok", + available: "Sabtu, 14:00", + }, +]; + +export default function MentorsPage() { + return ( +
+ +
+
+ Rekomendasi Mentor + Berdasarkan goal "Persiapan Karier" kamu. +
+
+
+ + +
+ +
+
+ +
+ {mentors.map((mentor) => ( + + +
+
+ {mentor.name} +
+ + {mentor.match} + +
+
+
+
+
+

{mentor.name}

+

{mentor.role}

+
+
+
{mentor.price}
+
per sesi (60 mnt)
+
+
+ +
+
+ + {mentor.rating} + ({mentor.sessions} sesi) +
+
+ + Tersedia: {mentor.available} +
+
+ +
+ {mentor.tags.map(tag => ( + + {tag} + + ))} +
+ +
+ + +
+
+
+
+
+ ))} +
+ +
+

Tidak menemukan yang cocok?

+ +
+
+
+ ); +}