"use client"; import React, { } from "react"; import { motion } from "framer-motion"; import { Check, } from "lucide-react"; import { Button } from "@/components/ui/button"; import AnimatedSection from "./Animated"; import { home } from "@/services/Constants"; // Pricing Section const Pricing = () => { return (

Simple & Transparent{" "} Pricing

Choose a plan that fits your hiring scale

{home.plans.map((plan, index) => (

{plan.name}

{plan.price}

{plan.period}

    {plan.features.map((f, i) => (
  • {f}
  • ))}
))}
); }; export default Pricing