From 735c565fcab432797c42a3bdb478ac672f9dd1e7 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 18:28:53 +0000 Subject: [PATCH] Update components/hero.tsx --- components/hero.tsx | 60 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 components/hero.tsx diff --git a/components/hero.tsx b/components/hero.tsx new file mode 100644 index 0000000..1c841a0 --- /dev/null +++ b/components/hero.tsx @@ -0,0 +1,60 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Button } from "@/components/ui/button"; +import Link from "next/link"; +import { motion } from "framer-motion"; + +export function Hero() { + return ( +
+ +
+ + + Temukan Mentor yang Tepat untuk Kariermu + + + Akses langsung ke praktisi industri terbaik. Mulai sesi mentoring 1:1 untuk akselerasi karier dan skill kamu hari ini. + +
+ + +
+
+
+ + {[1, 2, 3, 4].map((i) => ( +
+ User +
+ ))} +
+ 500+ Mentee Terbantu +
+
+ ★★★★★ + 4.9/5 Rating +
+
+
+
+
+ + {/* Background Decoration */} +
+
+
+
+
+ ); +}