import React from 'react'; import { Link } from 'react-router-dom'; import { motion } from 'framer-motion'; import { fadeIn, slideUp, slideLeft, slideRight } from '../utils/motionVariants'; const Hero = ({ heroData }) => { const defaultHero = { title: 'Aman Bicara, Aman Melapor', subtitle: 'Satgas PPKPT Politeknik Negeri Jember', description: 'Kami siap mendengar dan membantu Anda dengan profesionalisme dan kerahasiaan terjamin.' }; const hero = heroData || defaultHero; return (
{/* Background Decorations */}
{/* Left Content */} {hero.title} {hero.subtitle} {hero.description} Butuh Bantuan Darurat Buat Laporan {/* Trust Indicators */}
100% Rahasia
Profesional
24/7 Support
{/* Right Content - Logo & Branding */} {/* Main Logo Container */} header gambar {/* Background Shape */}
{/* Scroll Indicator */} Scroll ke bawah
); }; export default Hero;