"use client"; import { motion, Variants } from "framer-motion"; import { ArrowRight, Sparkles } from "lucide-react"; import { Button } from "@/Components/ui/button"; import { Link } from "@inertiajs/react"; const containerVariants: Variants = { hidden: { opacity: 0 }, visible: { opacity: 1, transition: { staggerChildren: 0.2, delayChildren: 0.3, }, }, }; const itemVariants: Variants = { hidden: { y: 20, opacity: 0 }, visible: { y: 0, opacity: 1, transition: { duration: 0.8, ease: [0.215, 0.610, 0.355, 1.000], }, }, }; export function Hero() { return (
{/* Background Gradients - Boosted for Light Mode using CSS variables */}
{/* Grid Pattern Overlay */}
{/* Japanese Wave Pattern - Adjusted Opacity */}
Pendaftaran Batch 2026 Dibuka!
Hubungkan Impianmu
Ke Negeri Sakura
Platform edukasi terdepan untuk penguasaan Bahasa Jepang & karir profesional. Belajar JLPT N5 hingga N2 dengan kurikulum modern dan Spaced Repetition System.
); }