"use client"; import React from "react"; import { motion } from "framer-motion"; import { Button } from "@/components/ui/button"; import { Badge } from "@/components/ui/badge"; import { PlayCircle, ArrowRight, Sparkles, } from "lucide-react"; import { atsPageData } from "@/services/Constants"; const HeroSection: React.FC = () => { return (
{/* Background Animation */}
{atsPageData.hero.badge}

{atsPageData.hero.title}

{atsPageData.hero.subtitle}

); }; export default HeroSection