jingrow/data/pricing.js
2025-06-17 15:23:37 +08:00

138 lines
4.6 KiB
JavaScript

export const pricingPlans = [
{
title: "Premium Plan",
monthlyPrice: "19",
yearlyPrice: "199",
features: [
{ text: "5 Projects", included: true },
{ text: "100K API Access", included: true },
{ text: "200MB Storage", included: true },
{ text: "Weekly Reports", included: true },
{ text: "7/24 Support", included: false },
],
},
{
title: "Corporate Plan",
monthlyPrice: "49",
yearlyPrice: "499",
features: [
{ text: "20 Projects", included: true },
{ text: "300K API Access", included: true },
{ text: "500MB Storage", included: true },
{ text: "Weekly Reports", included: true },
{ text: "7/24 Support", included: true },
],
},
];
export const pricingPlans2 = [
{
title: "Basic Plan",
monthlyPrice: 9,
yearlyPrice: 99,
features: [
{ text: "1 Project", included: true },
{ text: "100K API Access", included: true },
{ text: "100MB Storage", included: true },
{ text: "Weekly Reports", included: true },
{ text: "7/24 Support", included: true },
],
className:
"md:w-6/12 lg:w-4/12 xl:w-4/12 w-full flex-[0_0_auto] !px-[15px] max-w-full !mt-[30px]",
},
{
title: "Premium Plan",
monthlyPrice: 19,
yearlyPrice: 199,
features: [
{ text: "5 Projects", included: true },
{ text: "100K API Access", included: true },
{ text: "200MB Storage", included: true },
{ text: "Weekly Reports", included: true },
{ text: "7/24 Support", included: true },
],
isPopular: true,
className:
"md:w-6/12 lg:w-4/12 xl:w-4/12 w-full flex-[0_0_auto] !px-[15px] max-w-full !mt-[30px]",
},
{
title: "Corporate Plan",
monthlyPrice: 49,
yearlyPrice: 499,
features: [
{ text: "20 Projects", included: true },
{ text: "300K API Access", included: true },
{ text: "500MB Storage", included: true },
{ text: "Weekly Reports", included: true },
{ text: "7/24 Support", included: true },
],
className:
"md:w-6/12 lg:w-4/12 xl:w-4/12 w-full flex-[0_0_auto] !px-[15px] max-w-full !mt-[30px]",
},
];
// xl:!ml-0 lg:!ml-0 md:!ml-[25%]
export const pricingPlans3 = [
{
title: "Basic Plan",
price: "9",
features: [
{ text: "1 Project", included: true },
{ text: "100K API Access", included: true },
{ text: "100MB Storage", included: true },
{ text: "Weekly Reports", included: false },
{ text: "7/24 Support", included: false },
],
className:
"md:w-6/12 lg:w-3/12 xl:w-3/12 w-full flex-[0_0_auto] !mt-[30px] max-w-full",
cardClassName: "pricing card !shadow-none",
buttonClassName: "btn btn-soft-navy rounded",
},
{
title: "Premium Plan",
price: "19",
features: [
{ text: "5 Projects", included: true },
{ text: "100K API Access", included: true },
{ text: "200MB Storage", included: true },
{ text: "Weekly Reports", included: true },
{ text: "7/24 Support", included: false },
],
className:
"md:w-6/12 lg:w-3/12 xl:w-3/12 w-full flex-[0_0_auto] !mt-[30px] max-w-full",
cardClassName: "pricing card !shadow-none",
buttonClassName: "btn btn-soft-navy rounded",
},
{
title: "Corporate Plan",
price: "29",
features: [
{ text: "20 Projects", included: true },
{ text: "300K API Access", included: true },
{ text: "500MB Storage", included: true },
{ text: "Weekly Reports", included: true },
{ text: "7/24 Support", included: true },
],
className:
"md:w-6/12 lg:w-3/12 xl:w-3/12 w-full flex-[0_0_auto] !mt-[30px] max-w-full",
cardClassName: "pricing card !bg-[rgba(246,247,249,1)]",
buttonClassName:
"btn btn-navy !text-white !bg-[#343f52] border-[#343f52] hover:text-white hover:bg-[#343f52] hover:!border-[#343f52] focus:shadow-[rgba(82,92,108,1)] active:text-white active:bg-[#343f52] active:border-[#343f52] disabled:text-white disabled:bg-[#343f52] disabled:border-[#343f52] rounded hover:translate-y-[-0.15rem] hover:shadow-[0_0.25rem_0.75rem_rgba(30,34,40,0.15)]",
},
{
title: "Community Plan",
price: "49",
features: [
{ text: "90 Projects", included: true },
{ text: "900K API Access", included: true },
{ text: "900MB Storage", included: true },
{ text: "Weekly Reports", included: true },
{ text: "7/24 Support", included: true },
],
className:
"md:w-6/12 lg:w-3/12 xl:w-3/12 w-full flex-[0_0_auto] !mt-[30px] max-w-full",
cardClassName: "pricing card !shadow-none",
buttonClassName: "btn btn-soft-navy rounded",
},
];