"use client"; import React from "react"; import { motion } from "framer-motion"; import { Button } from "@/components/ui/button"; import { ArrowRight, Sparkles, } from "lucide-react"; import { atsPageData } from "@/services/Constants"; // CTA Section Component const CtaSection: React.FC = () => { return (

{atsPageData.cta.title}

{atsPageData.cta.description}

); }; export default CtaSection