From edb4a6fd55b8cd31e5d93a9ccf659777ba27c4a7 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Thu, 15 Jan 2026 13:41:20 +0000 Subject: [PATCH] Update app/pricing/pricing-table.tsx --- app/pricing/pricing-table.tsx | 173 ++++++++++++++++++++++++++++++++++ 1 file changed, 173 insertions(+) create mode 100644 app/pricing/pricing-table.tsx diff --git a/app/pricing/pricing-table.tsx b/app/pricing/pricing-table.tsx new file mode 100644 index 0000000..27006a4 --- /dev/null +++ b/app/pricing/pricing-table.tsx @@ -0,0 +1,173 @@ +"use client"; +import React from "react"; + +import { IconCheck } from "@tabler/icons-react"; +import { tiers } from "@/constants/tier"; + +export function PricingTable({ _pricing }: any) { + const CheckIcon = () => { + return ( + + ); + }; + + const tableFeatures = [ + { + title: "Create APIs", + hobby: , + starter: , + professional: , + enterprise: , + }, + { + title: "Access to Dashboard", + hobby: , + starter: , + professional: , + enterprise: , + }, + { + title: "Share functionality", + hobby: , + starter: , + professional: , + enterprise: , + }, + { + title: "Playground Editor", + hobby: , + starter: , + professional: , + enterprise: , + }, + { + title: "Marketplace access", + hobby: , + starter: , + professional: , + enterprise: , + }, + { + title: "On call support", + hobby: , + starter: , + professional: , + enterprise: , + }, + { + title: "Developer Program", + starter: , + hobby: , + professional: , + enterprise: , + }, + { + title: "Advanced Analytics", + hobby: "On demand", + starter: "If you ask nicely", + professional: , + enterprise: , + }, + { + title: "Long running APIs", + hobby: "Probably never", + starter: "Nuh uh", + professional: , + enterprise: , + }, + { + title: "Zero Downtime Guarantee", + hobby: "", + starter: "", + professional: , + enterprise: , + }, + { + title: "Custom Analytics", + hobby: "", + starter: "", + professional: , + enterprise: , + }, + { + title: "Single Sign On", + hobby: "", + starter: "", + professional: "", + enterprise: , + }, + { + title: "Security certificate", + hobby: "", + starter: "", + professional: "", + enterprise: , + }, + { + title: "Retweets from us", + hobby: "", + starter: "", + professional: "", + enterprise: , + }, + { + title: "We send you flowers", + hobby: "", + starter: "", + professional: "", + enterprise: , + }, + ]; + + return ( +
+
+
+
+ + + + + {tiers?.map((item, index) => ( + + ))} + + + + {tableFeatures.map((feature) => ( + + + + + + + + ))} + +
+ {item.name} +
+ {feature.title} + + {feature.hobby} + + {feature.starter} + + {feature.professional} + + {feature.enterprise} +
+
+
+ {/* */} +
+
+ ); +}