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?

); }