"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

All-in-One ATS, HRMS & CRP{" "} Solutions

Explore features across all our products designed to scale your hiring success.

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

{feature.title}

{feature.description}

))}
); }; export default Features;