diff --git a/app/page.tsx b/app/page.tsx new file mode 100644 index 0000000..6275f33 --- /dev/null +++ b/app/page.tsx @@ -0,0 +1,115 @@ +import { Hero } from "@/components/hero"; +import { HowItWorks } from "@/components/how-it-works"; +import { Footer } from "@/components/footer"; +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 Link from "next/link"; +import { Star } from "lucide-react"; + +const featuredMentors = [ + { + name: "Budi Santoso", + role: "Senior Product Manager at GoTo", + image: "https://i.pravatar.cc/150?u=budi", + rating: 4.9, + sessions: 120, + tags: ["Product Strategy", "Career Growth"], + }, + { + name: "Siska Putri", + role: "Lead UX Designer at Traveloka", + image: "https://i.pravatar.cc/150?u=siska", + rating: 5.0, + sessions: 85, + tags: ["UI/UX", "Portfolio Review"], + }, + { + name: "Andi Wijaya", + role: "Senior Software Engineer at Shopee", + image: "https://i.pravatar.cc/150?u=andi", + rating: 4.8, + sessions: 210, + tags: ["Backend", "System Design"], + }, +]; + +export default function Home() { + return ( +
+ + + + +
+ +
+
+ Mentor Pilihan Untukmu + Belajar langsung dari mereka yang sudah sukses di bidangnya. +
+ +
+ +
+ {featuredMentors.map((mentor, index) => ( + +
+ {mentor.name} +
+ +
+

{mentor.name}

+
+ + {mentor.rating} +
+
+

{mentor.role}

+
+ {mentor.tags.map((tag) => ( + + {tag} + + ))} +
+
+ {mentor.sessions} Sesi Selesai + +
+
+
+ ))} +
+
+
+ +
+ +
+ Siap untuk Melangkah Lebih Jauh? + + Jangan biarkan kariermu stagnan. Temukan mentor yang akan membantumu mencapai potensi maksimal. + + +
+
+
+ +
+ ); +}