import React from "react"; import Grid from "@mui/material/Grid"; import Card from "@mui/material/Card"; import { Box, Typography } from "@mui/material"; import Button from "@mui/material/Button"; import Link from "next/link"; import styles from "@/components/Pages/Pricing/PricingPlanStyle2.module.css"; const priceInfo = [ { id: 1, title: "Basic Plan", subTitle: "Perfect for an individual or a small team starting to get bigger", price: "50", duration: "per month", priceLists: [ { title: "100 Responses a Month", }, { title: "Unlimited Forms and Surveys", }, { title: "Unlimited Fields", }, { title: "Basic Form Creation Tools", }, { title: "Up to 2 Subdomains", }, ], }, { id: 2, title: "Professional Plan", subTitle: "Perfect for an individual or a small team starting to get bigger", price: "50", duration: "per month", priceLists: [ { title: "120 Responses a Month", }, { title: "Unlimited Forms and Surveys", }, { title: "Unlimited Fields", }, { title: "Basic Form Creation Tools", }, { title: "Up to 5 Subdomains", }, ], }, { id: 3, title: "Enterprise Plan", subTitle: "Perfect for an individual or a small team starting to get bigger", price: "150", duration: "per month", priceLists: [ { title: "150 Responses a Month", }, { title: "Unlimited Forms and Surveys", }, { title: "Unlimited Fields", }, { title: "Basic Form Creation Tools", }, { title: "Up to 10 Subdomains", }, ], }, ]; const PricingPlanStyle2 = () => { return ( <> Pricing Plans - 2 {priceInfo.map((info) => ( {info.title} {info.subTitle} ${info.price}/{" "} {info.duration}
    {info.priceLists.map((list) => (
  • {list.title}
  • ))}
))}
); }; export default PricingPlanStyle2;