diff --git a/app/onboarding/page.tsx b/app/onboarding/page.tsx new file mode 100644 index 0000000..db4a7d1 --- /dev/null +++ b/app/onboarding/page.tsx @@ -0,0 +1,114 @@ +"use client"; +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 { Label } from "@/components/ui/label"; +import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"; +import { RadioGroup, RadioGroupItem } from "@/components/ui/radio-group"; +import Link from "next/link"; +import { motion } from "framer-motion"; + +export default function OnboardingPage() { + return ( +
+ +
+
+ Langkah 1 dari 3 + 33% Selesai +
+
+
+
+
+ + + Apa goal utama kamu? + Kami akan mencocokkanmu dengan mentor yang paling relevan. + + + +
+ + +
+ +
+ + +
+ + +
+
+ + +
+
+ + +
+
+
+ +
+ + +

+ * Tenang, kamu bisa mengubah filter ini nanti. +

+
+ + +
+
+
+ +
+ ); +}