import React from 'react'; import { motion } from 'framer-motion'; import { Button } from '@/components/ui/button'; import { useNavigate } from 'react-router-dom'; const HeroSection = ({ title, subtitle, description, backgroundImage, ctaText = "Get Started", ctaLink = "/get-started", showVideo = false, videoEmbed = null }) => { const navigate = useNavigate(); return (
{/* Background Image/Video */}
{showVideo && videoEmbed ? (
{videoEmbed}
) : (
)}
{/* Content */}
{subtitle && ( {subtitle} )} {title} {description && ( {description} )}
{/* Animated particles/dots effect */}
); }; export default HeroSection;