"use client"; import React, { } from "react"; import { motion } from "framer-motion"; import AnimatedSection from "./Animated"; import { home } from "@/services/Constants"; // Benefits Section const Benefits = () => { return (

Why Choose TalentFlow?

Experience the future of recruitment with our innovative platform

{home.benefits.map((benefit, index) => (
{benefit.icon}

{benefit.title}

{benefit.description}

))}
); }; export default Benefits