"use client"; import { motion, Variants } from "framer-motion"; import { ArrowRight, Sparkles } from "lucide-react"; import { Button } from "@/components/ui/button"; 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 */}
{/* Grid Pattern Overlay */}
Connecting Indonesia & Japan
Platform Edukasi
& Budaya Jepang
Nihonbuzz adalah media yang menghadirkan konten seputar bahasa, budaya, dan gaya hidup Jepang secara informatif dan menghibur untuk generasi muda Indonesia.
); }