import React from 'react' import BreadcrumbComBS from "../breadcrumb/BreadcrumbComBS"; import getImage from "../../utils/getImage"; export default function Subscription() { const pricingFields ={ starter: { name: 'Starter', price: 5.99, active: true }, basic: { name: 'Basic', price: 12.99, active: true }, premium: { name: 'Premium', price: 20.00, active: true }, } return ( <>
Current Subscription(s)

Basic

{/*

/ Monthly

*/} {/*
    */} {/*
  • post jobs
  • */} {/*
  • advanced instructors search
  • */} {/*
  • invite candidates
  • */} {/*
  • post events
  • */} {/*
  • cancel any time
  • */} {/*
*/}
<> {Object.entries(pricingFields)?.map(([key, value]) => (
{value.name}

${value.price}

/ Monthly

  • post jobs
  • advanced instructors search
  • invite candidates
  • post events
  • cancel any time
))}
) }