"use client"; import React from "react"; import { motion } from "framer-motion"; import { Card, CardContent } from "@/components/ui/card"; import { atsPageData } from "@/services/Constants"; // Features Section Component const FeaturesSection: React.FC = () => { return (
{atsPageData.features.title}
{atsPageData.features.items.map((feature, index) => (
{feature.icon}

{feature.title}

{feature.description}

))}
); }; export default FeaturesSection