"use client"; import React, { } from "react"; import { motion } from "framer-motion"; import { Card, CardContent } from "@/components/ui/card"; import AnimatedSection from "./Animated"; import { home } from "@/services/Constants"; // Features Section const Features = () => { return (
POWERFUL FEATURES

Everything You Need to{" "} Hire Smarter

Our comprehensive ATS platform combines cutting-edge AI with intuitive design to revolutionize your recruitment process.

{home.features.map((feature, index) => (
{feature.icon}

{feature.title}

{feature.description}

))}
); }; export default Features