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/PricingPlanStyle1.module.css"; const priceInfo = [ { id: 1, title: "Basic Plan", subTitle: "A simple start for everyone", icon: "ri-shield-check-fill", price: "50", duration: "per month", priceLists: [ { title: "Free Live Support", }, { title: "30GB Disk Space", }, { title: "Scalable Bandwith", }, { title: "Free Setup", }, ], }, { id: 2, title: "Professional Plan", subTitle: "A simple start for everyone", icon: "ri-pie-chart-2-line", price: "50", duration: "per month", priceLists: [ { title: "Free Live Support", }, { title: "35GB Disk Space", }, { title: "Scalable Bandwith", }, { title: "Free Setup", }, ], }, { id: 3, title: "Enterprise Plan", subTitle: "A simple start for everyone", icon: "ri-briefcase-line", price: "150", duration: "per month", priceLists: [ { title: "Free Live Support", }, { title: "40GB Disk Space", }, { title: "Scalable Bandwith", }, { title: "Free Setup", }, ], }, { id: 4, title: "Unlimited Plan", subTitle: "A simple start for everyone", icon: "ri-star-half-line", price: "200", duration: "per month", priceLists: [ { title: "Free Live Support", }, { title: "50GB Disk Space", }, { title: "Scalable Bandwith", }, { title: "Free Setup", }, ], }, ]; const PricingPlanStyle1 = () => { return ( <> Pricing Plans - 1 {priceInfo.map((info) => ( {info.title} {info.subTitle}
${info.price}/{" "} {info.duration}
    {info.priceLists.map((list) => (
  • {list.title}
  • ))}
))}
); }; export default PricingPlanStyle1;