Components/Pricing Tables
Pricing Tables
Horizontal card
0import React from "react";1import Link from "next/link";23const CheckmarkIcon = ({ className }) => {4 return (5 <svg6 xmlns="http://www.w3.org/2000/svg"7 viewBox="0 0 24 24"8 preserveAspectRatio="xMidYMid meet"9 className={className}10 >11 <path12 fillRule="evenodd"13 d="M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12zm13.36-1.814a.75.75 0 10-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 00-1.06 1.06l2.25 2.25a.75.75 0 001.14-.094l3.75-5.25z"14 clipRule="evenodd"15 />16 </svg>17 );18};1920const data = [21 { name: "Private forum access" },22 { name: "Entry to annual conference" },23 { name: "Extended Resources" },24 { name: "Design system analytics" },25];2627export function PricingTables1() {28 return (29 <div className="mx-auto w-full max-w-md px-8 py-12 sm:max-w-xl md:max-w-3xl lg:max-w-5xl xl:max-w-[1440px]">30 <div className="flex gap-x-16 rounded-3xl border border-slate-200 p-6 max-lg:flex-col sm:min-h-[320px]">31 <div className="w-full p-6 lg:pr-0">32 <div className="mb-8 max-w-xl">33 <h2 className="mb-3 text-3xl font-bold tracking-tight text-slate-900">34 Competitive Pricing35 </h2>36 <p className="text-base text-slate-600">37 Our cost-effective pricing model ensures you gain access to our38 dynamic team's expertise and our cutting-edge technology,39 groundbreaking innovation doesn't have to break the bank.40 </p>41 </div>42 <div className="mb-6 flex items-center gap-x-6">43 <h3 className="text-xl font-semibold text-sky-600 sm:whitespace-nowrap">44 Excellence within Your Budget45 </h3>46 <hr className="h-[1px] w-full border border-none bg-slate-200 max-sm:hidden" />47 </div>48 <div className="grid grid-cols-1 gap-x-6 gap-y-4 sm:grid-cols-2">49 {data.map(({ name }, index: number) => {50 return (51 <div key={index} className="flex gap-x-2">52 <CheckmarkIcon className="h-6 w-6 flex-shrink-0 fill-sky-600" />5354 <p className="text-base text-slate-600">{name}</p>55 </div>56 );57 })}58 </div>59 </div>60 <div className="flex flex-col items-center justify-center gap-y-6 rounded-3xl border border-slate-200 bg-slate-100 p-6 max-lg:min-h-[320px] sm:max-lg:m-6 lg:w-[448px] lg:min-w-[448px]">61 <div className="text-center">62 <h2 className="mb-4 text-lg font-semibold lowercase text-sky-600 first-letter:uppercase">63 enjoy lifelong ownership64 </h2>65 <p className="font-slate-900 mb-4 text-5xl font-black text-slate-900">66 $24067 <span className="ml-2 text-base font-semibold uppercase text-slate-600">68 usd69 </span>70 </p>71 <p className="text-center text-xs text-slate-600">72 Learn more about membership policy73 </p>74 </div>75 <Link76 href="#"77 className="h-fit w-fit select-none rounded-lg bg-sky-600 px-5 py-2.5 text-sm lowercase text-slate-100 outline-1 outline-sky-600 duration-75 first-letter:uppercase hover:bg-sky-800 active:scale-95 disabled:pointer-events-none disabled:bg-sky-600/50"78 >79 start now80 </Link>81 </div>82 </div>83 </div>84 );85}86
Competitive Pricing
Our cost-effective pricing model ensures you gain access to our dynamic team's expertise and our cutting-edge technology, groundbreaking innovation doesn't have to break the bank.
Excellence within Your Budget
Private forum access
Entry to annual conference
Extended Resources
Design system analytics
enjoy lifelong ownership
$240usd
Learn more about membership policy
Three-column with bold card
0import React from "react";1import Link from "next/link";2import { useState } from "react";34const data = [5 {6 plan: "basic",7 price: { yearly: "$92", monthly: "$45" },8 desc: "Unlock the potential of your business with our starter plan. Benefit from 24/7 live chat support, customized branding guidelines, and entry to our annual conference.",9 features: [10 { name: "24/7 live chat support" },11 { name: "Customized branding guidelines" },12 { name: "Entry to annual conference" },13 ],14 },15 {16 plan: "professional",17 price: { yearly: "$230", monthly: "$45" },18 desc: "Elevate your business with our professional plan. Gain access to private forum, customized branding guidelines, priority customer support, and 24/7 live chat support.",19 features: [20 { name: "Private forum access" },21 { name: "Customized branding guidelines" },22 { name: "Priority customer support" },23 { name: "24/7 live chat support" },24 ],25 },26 {27 plan: "ultimate",28 price: { yearly: "$430", monthly: "$45" },29 desc: "Unleash the full potential of your business with our ultimate plan. Enjoy e-commerce integration, one-on-one design consultation, private forum access, priority customer support, and social media content creation.",30 features: [31 { name: "E-commerce integration" },32 { name: "One-on-one design consultation" },33 { name: "Private forum access" },34 { name: "Priority customer support" },35 { name: "Social media content creation" },36 ],37 },38];3940const Checkmark = ({ className }) => {41 return (42 <svg43 xmlns="http://www.w3.org/2000/svg"44 viewBox="0 0 24 24"45 preserveAspectRatio="xMidYMid meet"46 className={className}47 >48 <path49 fillRule="evenodd"50 d="M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12zm13.36-1.814a.75.75 0 10-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 00-1.06 1.06l2.25 2.25a.75.75 0 001.14-.094l3.75-5.25z"51 clipRule="evenodd"52 />53 </svg>54 );55};5657export function PricingTables2() {58 const [cost, setCost] = useState(false);5960 return (61 <div className="mx-auto w-full max-w-md px-8 py-12 sm:max-w-xl md:max-w-3xl lg:max-w-5xl xl:max-w-7xl">62 <div className="flex flex-col items-center">63 <div className="flex flex-col items-center gap-y-6 mb-12">64 <h2 className="text-left text-5xl font-semibold">65 Experience the Power of Choices66 </h2>67 <div className="flex w-fit gap-4">68 <button69 onClick={() => setCost(!cost)}70 className="h-fit w-fit rounded-full bg-sky-600 px-6 py-3 text-sm font-semibold capitalize text-slate-50 group-last:bg-slate-50 group-last:text-sky-600"71 >72 monthly73 </button>74 <button75 onClick={() => setCost(!cost)}76 className="h-fit w-fit rounded-full bg-sky-600 px-6 py-3 text-sm font-semibold capitalize text-slate-50 group-last:bg-slate-50 group-last:text-sky-600"77 >78 yearly79 </button>80 </div>81 </div>82 <div className="group grid w-full grid-cols-1 gap-6 md:grid-cols-2 xl:grid-cols-3">83 {data.map(({ plan, price, features }, index: number) => {84 return (85 <div86 key={index}87 className="relative flex flex-col justify-between gap-y-12 group last:bg-slate-800 rounded-3xl bg-slate-100 px-6 py-6"88 >89 <div className="relative flex w-full flex-col gap-y-8">90 <div className="flex flex-col gap-y-4">91 <h3 className="text-2xl font-bold capitalize text-slate-900 first-letter:uppercase group-[&>*:nth-child(3)]:text-slate-100 sm:text-3xl">92 {plan}93 </h3>94 <div className="flex items-end gap-x-2">95 <h3 className="font-slate-900 text-5xl font-black capitalize text-slate-900 group-[&>*:nth-child(3)]:text-slate-100">96 {cost ? price.monthly : price.yearly}97 </h3>9899 <p className="truncate text-sm font-medium lowercase text-slate-400 group-[&>*:nth-child(3)]:text-slate-400">100 {cost ? "/ month" : "/ year"}101 </p>102 </div>103 </div>104 <div className="flex flex-col gap-y-2">105 <h3 className="text-xl font-bold capitalize text-slate-900 group-[&>*:nth-child(3)]:text-slate-100">106 included in plan:107 </h3>108109 <div className="flex flex-col gap-y-4">110 {features.map(({ name }, index2: number) => {111 return (112 <div key={index2} className="flex items-center gap-x-2">113 <Checkmark className="h-6 w-6 flex-shrink-0 fill-sky-600 group-[&>*:nth-child(3)]:fill-sky-600" />114115 <p className="text-sm font-medium capitalize text-slate-900 group-[&>*:nth-child(3)]:text-slate-200">116 {name}117 </p>118 </div>119 );120 })}121 </div>122 </div>123 </div>124125 <Link126 href="/"127 className="z-10 h-fit w-full truncate rounded-lg bg-sky-600 px-6 py-3 text-center text-sm font-medium capitalize text-slate-50"128 >129 Get Started130 </Link>131 </div>132 );133 })}134 </div>135 </div>136 </div>137 );138}139
Experience the Power of Choices
basic
$92
/ year
included in plan:
24/7 live chat support
Customized branding guidelines
Entry to annual conference
professional
$230
/ year
included in plan:
Private forum access
Customized branding guidelines
Priority customer support
24/7 live chat support
ultimate
$430
/ year
included in plan:
E-commerce integration
One-on-one design consultation
Private forum access
Priority customer support
Social media content creation
Three-level table
0import React from "react";1import Link from "next/link";23const CheckmarkIcon = ({ className }) => {4 return (5 <svg6 xmlns="http://www.w3.org/2000/svg"7 viewBox="0 0 24 24"8 preserveAspectRatio="xMidYMid meet"9 className={className}10 >11 <path12 fillRule="evenodd"13 d="M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12zm13.36-1.814a.75.75 0 10-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 00-1.06 1.06l2.25 2.25a.75.75 0 001.14-.094l3.75-5.25z"14 clipRule="evenodd"15 />16 </svg>17 );18};1920const data = [21 {22 plan: "basic",23 price: "free",24 features: [25 { name: "24/7 customer support" },26 { name: "Personalized onboarding" },27 { name: "Access to knowledge base" },28 ],29 },30 {31 plan: "standard",32 price: "$29.99",33 features: [34 { name: "Advanced analytics dashboard" },35 { name: "Customizable branding options" },36 { name: "Priority email support" },37 { name: "Access to community forum" },38 ],39 },40 {41 plan: "premium",42 price: "$59.99",43 features: [44 { name: "Full e-commerce integration" },45 { name: "Dedicated account manager" },46 { name: "24/7 live chat support" },47 { name: "Access to exclusive webinars" },48 { name: "Social media marketing tools" },49 ],50 },51];5253export function PricingTables3() {54 return (55 <div className="mx-auto w-full max-w-md px-8 py-12 sm:max-w-xl md:max-w-3xl lg:max-w-5xl xl:max-w-[1440px]">56 <div className="flex justify-between gap-x-12 gap-y-4 max-lg:flex-col lg:items-center">57 <div className="max-w-3xl">58 <h2 className="text-4xl font-bold tracking-tight text-slate-900">59 Unleash the Power of Our Team and Transform Your Business60 </h2>61 </div>6263 <div className="w-full max-w-md lg:text-right">64 <p className="text-base text-slate-600">65 Our team of specialists collectively shares a fervor for66 groundbreaking technologies and innovation. We play a pivotal role67 in forging the industry's future.68 </p>69 </div>70 </div>7172 <hr className="my-12 h-[1px] border-none bg-slate-200" />7374 <div className="divide-y divide-slate-200">75 {data.map(({ plan, features, price }, index: number) => {76 return (77 <div78 key={index}79 className="flex flex-wrap justify-between gap-x-16 gap-y-8 py-12 first:pt-0 last:pb-0 max-sm:flex-col lg:grid lg:grid-cols-[198px_328px_repeat(2,minmax(0,1fr))] lg:items-center xl:grid-cols-[228px_428px_repeat(2,minmax(0,1fr))]"80 >81 <div className="sm:contents">82 <h2 className="text-2xl font-bold lowercase tracking-tight text-slate-900 first-letter:uppercase max-sm:mb-2 sm:text-3xl lg:order-first">83 {plan}84 </h2>85 <p className="font-slate-900 text-4xl font-black lowercase text-slate-900 first-letter:uppercase max-sm:mb-4">86 {price}87 </p>88 <div className="flex w-full grid-cols-[repeat(2,auto)] flex-col justify-between gap-y-4 sm:max-lg:grid lg:-order-1">89 {features.map(({ name }, index2: number) => {90 return (91 <div key={index2} className="flex gap-x-2">92 <CheckmarkIcon className="h-6 w-6 flex-shrink-0 fill-sky-600" />9394 <p className="text-base text-slate-600">{name}</p>95 </div>96 );97 })}98 </div>99 </div>100 <div className="flex lg:justify-end">101 <Link102 href="#"103 className="h-fit w-fit select-none rounded-lg bg-sky-600 px-5 py-2.5 text-sm lowercase text-slate-100 outline-1 outline-sky-600 duration-75 first-letter:uppercase hover:bg-sky-800 active:scale-95 disabled:pointer-events-none disabled:bg-sky-600/50"104 >105 start now106 </Link>107 </div>108 </div>109 );110 })}111 </div>112 </div>113 );114}115
Unleash the Power of Our Team and Transform Your Business
Our team of specialists collectively shares a fervor for groundbreaking technologies and innovation. We play a pivotal role in forging the industry's future.
basic
free
24/7 customer support
Personalized onboarding
Access to knowledge base
standard
$29.99
Advanced analytics dashboard
Customizable branding options
Priority email support
Access to community forum
premium
$59.99
Full e-commerce integration
Dedicated account manager
24/7 live chat support
Access to exclusive webinars
Social media marketing tools
Three-column minimal
0import React from "react";1import Link from "next/link";23const CheckmarkIcon = ({ className }) => {4 return (5 <svg6 xmlns="http://www.w3.org/2000/svg"7 viewBox="0 0 24 24"8 preserveAspectRatio="xMidYMid meet"9 className={className}10 >11 <path12 fillRule="evenodd"13 d="M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12zm13.36-1.814a.75.75 0 10-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 00-1.06 1.06l2.25 2.25a.75.75 0 001.14-.094l3.75-5.25z"14 clipRule="evenodd"15 />16 </svg>17 );18};1920const data = [21 {22 plan: "basic",23 price: "$19",24 description: "Perfect for small-scale projects and essential design files.",25 features: [26 { name: "5 GB storage space for files and documents." },27 { name: "Access to a wide range of professionally designed templates." },28 { name: "Unlimited project collaborators." },29 { name: "Export designs in multiple file formats." },30 ],31 },32 {33 plan: "standard",34 price: "$29",35 description:36 "Unlock even more possibilities with an extensive collection of premium design templates.",37 features: [38 { name: "10 GB storage space for files and documents." },39 { name: "Advanced design collaboration and commenting tools." },40 { name: "Access to a library of exclusive pre-designed templates." },41 { name: "Create custom templates tailored to your needs." },42 { name: "Invite external collaborators to your projects." },43 ],44 },45 {46 plan: "premium",47 price: "$49",48 description:49 "Gain valuable insights with comprehensive usage reports and analytics for your team.",50 features: [51 { name: "20 GB storage space for files and documents." },52 { name: "Advanced design collaboration and commenting tools." },53 { name: "Access to a library of premium pre-designed templates." },54 { name: "Create custom templates for your brand." },55 { name: "Basic design collaboration and commenting tools." },56 {57 name: "Manage your brand assets with advanced branding features.",58 },59 { name: "Detailed team usage reports and analytics." },60 ],61 },62];6364export function PricingTables4() {65 return (66 <div className="mx-auto w-full max-w-md px-8 py-12 sm:max-w-xl md:max-w-3xl lg:max-w-5xl xl:max-w-[1440px]">67 <div className="mx-auto mb-12 max-w-3xl text-center">68 <h2 className="mb-2 text-lg font-semibold text-sky-600">69 Jettwave's Pricing Structure70 </h2>71 <p className="mb-4 text-4xl font-bold tracking-tight text-slate-900">72 Investing in Technological Excellence73 </p>74 <p className="text-lg text-slate-600">75 From our basic package to our premium solutions, each tier offers a76 blend of efficiency and innovation, designed to propel your business77 to the forefront of the tech industry. Reach out to our team for a78 detailed consultation and discover the ideal package for your specific79 needs.80 </p>81 </div>82 <div className="mx-auto grid w-fit grid-cols-1 divide-slate-200 max-lg:divide-y lg:grid-cols-3 lg:divide-x">83 {data.map(({ plan, price, description, features }, index: number) => {84 return (85 <div86 key={index}87 className="mx-auto flex max-w-sm flex-col gap-y-8 first:pl-0 last:pr-0 max-lg:py-8 max-lg:first:pt-0 max-lg:last:pb-0 lg:px-6"88 >89 <div className="flex flex-col gap-y-8 lg:gap-y-6">90 <div>91 <h2 className="mb-1 text-sm font-semibold uppercase text-sky-600">92 {plan}93 </h2>9495 <p className="font-slate-900 mb-2 text-4xl font-black lowercase text-slate-900 first-letter:uppercase">96 {price}97 <span className="ml-2 text-sm font-semibold uppercase text-slate-600">98 USD99 </span>100 </p>101102 <p className="line-clamp-3 text-base text-slate-600 lg:h-[72px]">103 {description}104 </p>105 </div>106107 <Link108 href="#"109 className="h-fit truncate rounded-lg bg-sky-600 px-6 py-3 text-center text-sm font-medium capitalize text-slate-50 hover:bg-sky-800 focus:outline-none focus:ring-4 focus:ring-blue-300"110 >111 Start Now112 </Link>113 </div>114115 <div>116 <h2 className="mb-4 text-lg font-semibold text-sky-600 first-letter:uppercase">117 what's included118 </h2>119120 <div className="flex flex-col gap-y-4">121 {features.map(({ name }, index2: number) => {122 return (123 <div key={index2} className="flex gap-x-2">124 <CheckmarkIcon className="h-6 w-6 flex-shrink-0 fill-sky-600" />125126 <p className="text-base text-slate-600">{name}</p>127 </div>128 );129 })}130 </div>131 </div>132 </div>133 );134 })}135 </div>136 </div>137 );138}139
Jettwave's Pricing Structure
Investing in Technological Excellence
From our basic package to our premium solutions, each tier offers a blend of efficiency and innovation, designed to propel your business to the forefront of the tech industry. Reach out to our team for a detailed consultation and discover the ideal package for your specific needs.
basic
$19USD
Perfect for small-scale projects and essential design files.
what's included
5 GB storage space for files and documents.
Access to a wide range of professionally designed templates.
Unlimited project collaborators.
Export designs in multiple file formats.
standard
$29USD
Unlock even more possibilities with an extensive collection of premium design templates.
what's included
10 GB storage space for files and documents.
Advanced design collaboration and commenting tools.
Access to a library of exclusive pre-designed templates.
Create custom templates tailored to your needs.
Invite external collaborators to your projects.
premium
$49USD
Gain valuable insights with comprehensive usage reports and analytics for your team.
what's included
20 GB storage space for files and documents.
Advanced design collaboration and commenting tools.
Access to a library of premium pre-designed templates.
Create custom templates for your brand.
Basic design collaboration and commenting tools.
Manage your brand assets with advanced branding features.
Detailed team usage reports and analytics.
Three-column bold cards
0import React from "react";12const CheckmarkIcon = ({ className }) => {3 return (4 <svg5 xmlns="http://www.w3.org/2000/svg"6 viewBox="0 0 24 24"7 preserveAspectRatio="xMidYMid meet"8 className={className}9 >10 <path11 fillRule="evenodd"12 d="M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12zm13.36-1.814a.75.75 0 10-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 00-1.06 1.06l2.25 2.25a.75.75 0 001.14-.094l3.75-5.25z"13 clipRule="evenodd"14 />15 </svg>16 );17};1819const data = [20 {21 plan: "basic",22 price: "free",23 features: [24 { name: "24/7 customer support" },25 { name: "Personalized branding recommendations" },26 ],27 },28 {29 plan: "standard",30 price: "$32",31 features: [32 { name: "Access to exclusive community forum" },33 { name: "Tailored branding guidelines" },34 ],35 },36 {37 plan: "premium",38 price: "$64",39 features: [40 { name: "Personalized design consultation sessions" },41 { name: "Integrated e-commerce solutions" },42 ],43 },44];4546export function PricingTables5() {47 return (48 <div className="mx-auto w-full max-w-md px-8 py-12 sm:max-w-xl md:max-w-3xl lg:max-w-5xl xl:max-w-[1440px]">49 <div className="grid grid-cols-1 gap-x-6 gap-y-8 lg:grid-cols-3">50 {data.map(({ plan, price, features }, index: number) => {51 return (52 <div53 key={index}54 className="group mx-auto flex w-full flex-col items-center rounded-3xl border-slate-200 bg-slate-800 p-6 py-12 odd:border odd:bg-slate-100 max-lg:max-w-md"55 >56 <p className="mb-6 w-fit rounded-full bg-sky-700/25 px-4 py-2 text-base font-semibold capitalize text-sky-600 group-even:brightness-[1.75]">57 {plan}58 </p>59 <p className="font-slate-900 mb-6 text-5xl font-black lowercase text-slate-900 first-letter:uppercase group-even:text-slate-100">60 {price}61 <span className="ml-2 text-base font-semibold lowercase text-slate-600 group-even:text-slate-400">62 / month63 </span>64 </p>65 <div className="flex w-fit flex-col gap-y-4">66 {features.map(({ name }, index2: number) => {67 return (68 <div key={index2} className="flex gap-x-2">69 <CheckmarkIcon className="h-6 w-6 flex-shrink-0 fill-sky-600 group-even:fill-sky-600" />70 <p className="text-base text-slate-600 group-even:text-slate-100">71 {name}72 </p>73 </div>74 );75 })}76 </div>77 </div>78 );79 })}80 </div>81 </div>82 );83}84
basic
free/ month
24/7 customer support
Personalized branding recommendations
standard
$32/ month
Access to exclusive community forum
Tailored branding guidelines
premium
$64/ month
Personalized design consultation sessions
Integrated e-commerce solutions
Split with dual card cluster
0import React from "react";12const Logo = ({ className }) => {3 return (4 <svg5 xmlns="http://www.w3.org/2000/svg"6 viewBox="0 0 24 24"7 preserveAspectRatio="xMidYMid meet"8 className={className}9 >10 <path11 fillRule="evenodd"12 d="M10.5 3.798v5.02a3 3 0 01-.879 2.121l-2.377 2.377a9.845 9.845 0 015.091 1.013 8.315 8.315 0 005.713.636l.285-.071-3.954-3.955a3 3 0 01-.879-2.121v-5.02a23.614 23.614 0 00-3 0zm4.5.138a.75.75 0 00.093-1.495A24.837 24.837 0 0012 2.25a25.048 25.048 0 00-3.093.191A.75.75 0 009 3.936v4.882a1.5 1.5 0 01-.44 1.06l-6.293 6.294c-1.62 1.621-.903 4.475 1.471 4.88 2.686.46 5.447.698 8.262.698 2.816 0 5.576-.239 8.262-.697 2.373-.406 3.092-3.26 1.47-4.881L15.44 9.879A1.5 1.5 0 0115 8.818V3.936z"13 clipRule="evenodd"14 />15 </svg>16 );17};1819const MailIcon = ({ className }) => {20 return (21 <svg22 xmlns="http://www.w3.org/2000/svg"23 viewBox="0 0 24 24"24 preserveAspectRatio="xMidYMid meet"25 className={className}26 >27 <path d="M1.5 8.67v8.58a3 3 0 003 3h15a3 3 0 003-3V8.67l-8.928 5.493a3 3 0 01-3.144 0L1.5 8.67z" />28 <path d="M22.5 6.908V6.75a3 3 0 00-3-3h-15a3 3 0 00-3 3v.158l9.714 5.978a1.5 1.5 0 001.572 0L22.5 6.908z" />29 </svg>30 );31};3233const Plus = ({ className }) => {34 return (35 <svg36 xmlns="http://www.w3.org/2000/svg"37 viewBox="0 0 24 24"38 className={className}39 >40 <path41 fillRule="evenodd"42 d="M12 3.75a.75.75 0 01.75.75v6.75h6.75a.75.75 0 010 1.5h-6.75v6.75a.75.75 0 01-1.5 0v-6.75H4.5a.75.75 0 010-1.5h6.75V4.5a.75.75 0 01.75-.75z"43 clipRule="evenodd"44 />45 </svg>46 );47};4849const CheckmarkIcon = ({ className }) => {50 return (51 <svg52 xmlns="http://www.w3.org/2000/svg"53 viewBox="0 0 24 24"54 preserveAspectRatio="xMidYMid meet"55 className={className}56 >57 <path58 fillRule="evenodd"59 d="M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12zm13.36-1.814a.75.75 0 10-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 00-1.06 1.06l2.25 2.25a.75.75 0 001.14-.094l3.75-5.25z"60 clipRule="evenodd"61 />62 </svg>63 );64};6566const data = [67 {68 price: "$19",69 upsell: [70 {71 product: "Pro Plan",72 desc: "Unlock advanced incident management with unlimited integrations",73 icon: MailIcon,74 },75 {76 product: "Enterprise Plan",77 desc: "Tailored solution for large organizations with complex needs",78 icon: MailIcon,79 },80 {81 product: "Ultimate Plan",82 desc: "Experience the all-inclusive solution with VIP support",83 icon: MailIcon,84 },85 ],86 features: [],87 },88 {89 price: "$49",90 upsell: [],91 features: [92 { name: "All features included in the Basic Plan" },93 { name: "Customizable incident response workflows" },94 { name: "Service-level agreement for enhanced support" },95 ],96 },97];9899export function PricingTables6() {100 return (101 <div className="mx-auto w-full max-w-md px-8 py-12 sm:max-w-xl md:max-w-3xl lg:max-w-5xl xl:max-w-[1440px]">102 <div className="relative flex gap-y-12 overflow-hidden max-lg:flex-col lg:justify-end lg:max-xl:pb-32 lg:max-xl:pt-8">103 {/* Proper */}104 <div105 className="inset-x-0 max-w-3xl lg:max-xl:absolute106 lg:max-xl:max-w-none xl:pr-16"107 >108 <h2 className="mb-2 text-lg font-semibold text-sky-600 lg:max-xl:pr-[384px]">109 Transparent Pricing110 </h2>111 <p className="mb-4 line-clamp-2 text-4xl font-bold tracking-tight text-slate-900 lg:max-xl:pr-[384px]">112 Pricing Strategy For Maximum Impact113 </p>114 <p className="text-lg text-slate-600 lg:max-xl:pr-[652px]">115 Discover our carefully crafted pricing strategy designed to deliver116 maximum impact for your business. Contact us today to learn more117 about how our pricing structure can benefit your organization.118 </p>119 </div>120 {/* Proper */}121122 {/* lg:max-xl:items-end items-center */}123124 <div className="group/both grid grid-cols-1 gap-y-8 sm:grid-cols-2 lg:min-w-[704px] lg:max-w-[704px]">125 {data.map(({ upsell, price, features }, index: number) => {126 return (127 <div128 key={index}129 className="group z-20 my-auto h-fit overflow-hidden rounded-2xl border-slate-200130131132 duration-300 first:border first:bg-slate-100133134 last:bg-slate-800 group-hover/both:first:z-30 lg:max-xl:my-0 lg:max-xl:first:translate-x-1/4135136 lg:max-xl:first:translate-y-32 lg:max-xl:last:-translate-y-8 min-[1250px]:duration-300"137 >138 <div className="flex flex-col gap-3 p-3 group-last:hidden">139 {upsell.map((details, linkIndex: number) => {140 const Icon = details.icon;141 return (142 <div143 key={linkIndex}144 className="group relative flex items-center gap-x-4 rounded-xl bg-slate-200 p-4"145 >146 <Icon className="h-10 w-10 flex-shrink-0 rounded-full bg-sky-600 fill-slate-100 p-2.5" />147148 <div className="flex min-w-0 flex-col">149 <p className="truncate font-semibold capitalize text-slate-900">150 {details.product}151 </p>152 <p className="truncate text-sm capitalize text-slate-600">153 {details.desc}154 </p>155 </div>156157 <div className="absolute inset-x-0 bottom-0 z-10 flex w-full translate-y-[75%] justify-center group-last:hidden">158 <Plus className="h-6 w-6 rounded-full bg-slate-100 stroke-slate-900 stroke-2 p-1" />159 </div>160 </div>161 );162 })}163 </div>164165 <div className="flex flex-col items-center gap-y-4 p-6 text-center group-first:hidden">166 <Logo className="h-16 w-16 rounded-full bg-sky-600 fill-slate-100 p-4" />167168 <h3 className="text-xl font-semibold capitalize text-slate-100">169 better uptime170 </h3>171 </div>172173 <div className="mb-8 flex flex-col gap-y-4 px-6 group-first:hidden">174 {features.map(({ name }, featuresIndex: number) => {175 return (176 <div key={featuresIndex} className="flex gap-x-2">177 <CheckmarkIcon className="h-6 w-6 flex-shrink-0 fill-sky-600 group-last:fill-sky-600" />178179 <p className="text-base text-slate-600 group-last:text-slate-200">180 {name}181 </p>182 </div>183 );184 })}185 </div>186187 <div className="p-6 group-last:bg-slate-900">188 <div className="flex items-end justify-center gap-2">189 <h2 className="text-3xl font-bold text-slate-900 group-last:text-slate-50">190 {price}191 </h2>192 <p className="font-xs text-slate-900 group-last:text-slate-50">193 /mo194 </p>195 </div>196 <p className="text-center text-base text-slate-900 group-last:text-slate-50">197 $525 per month for 6 team <br /> filler text yaaaaaa198 </p>199 </div>200 </div>201 );202 })}203 </div>204 </div>205 </div>206 );207}208
Transparent Pricing
Pricing Strategy For Maximum Impact
Discover our carefully crafted pricing strategy designed to deliver maximum impact for your business. Contact us today to learn more about how our pricing structure can benefit your organization.
Pro Plan
Unlock advanced incident management with unlimited integrations
Enterprise Plan
Tailored solution for large organizations with complex needs
Ultimate Plan
Experience the all-inclusive solution with VIP support
better uptime
$19
/mo
$525 per month for 6 team
filler text yaaaaaa
better uptime
All features included in the Basic Plan
Customizable incident response workflows
Service-level agreement for enhanced support
$49
/mo
$525 per month for 6 team
filler text yaaaaaa
Shared group with standout card
0import React from "react";1import Link from "next/link";2import { useState } from "react";34const CheckmarkIcon = ({ className }) => {5 return (6 <svg7 xmlns="http://www.w3.org/2000/svg"8 viewBox="0 0 24 24"9 preserveAspectRatio="xMidYMid meet"10 className={className}11 >12 <path13 fillRule="evenodd"14 d="M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12zm13.36-1.814a.75.75 0 10-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 00-1.06 1.06l2.25 2.25a.75.75 0 001.14-.094l3.75-5.25z"15 clipRule="evenodd"16 />17 </svg>18 );19};2021const data = [22 {23 plan: "basic",24 price: { yearly: "$92", monthly: "$45" },25 description:26 "Unlock the potential of your business with our starter plan. Receive 24/7 live chat support, customized branding guidelines, and entry to our annual conference.",27 features: [28 { name: "24/7 live chat support" },29 { name: "Customized branding guidelines" },30 { name: "Entry to annual conference" },31 ],32 },33 {34 plan: "professional",35 price: { yearly: "$230", monthly: "$45" },36 description:37 "Elevate your business with our professional plan. Utilize private forum access, customized branding guidelines, priority customer support, and 24/7 live chat support.",38 features: [39 { name: "Private forum access" },40 { name: "Customized branding guidelines" },41 { name: "Priority customer support" },42 { name: "24/7 live chat support" },43 ],44 },45 {46 plan: "ultimate",47 price: { yearly: "$430", monthly: "$45" },48 description:49 "Unleash the full potential of your business with our ultimate plan. Benefit from e-commerce integration, one-on-one design consultation, private forum access, priority customer support, and social media content creation.",50 features: [51 { name: "E-commerce integration" },52 { name: "One-on-one design consultation" },53 { name: "Private forum access" },54 { name: "Priority customer support" },55 { name: "Social media content creation" },56 ],57 },58];5960export function PricingTables7() {61 const [cost, setCost] = useState(false);62 return (63 <div className="mx-auto w-full max-w-md px-8 py-12 sm:max-w-xl md:max-w-3xl lg:max-w-5xl xl:max-w-[1440px]">64 <div className="flex justify-between pb-12">65 <h2 className="text-left text-5xl font-semibold">66 Explore Limitless Possibilities67 </h2>68 <div className="flex gap-4">69 <button70 onClick={() => setCost(!cost)}71 className="h-fit w-fit rounded-full bg-sky-600 px-6 py-3 text-sm font-semibold capitalize text-slate-50 group-last:bg-slate-50 group-last:text-sky-600"72 >73 monthly74 </button>75 <button76 onClick={() => setCost(!cost)}77 className="h-fit w-fit rounded-full bg-sky-600 px-6 py-3 text-sm font-semibold capitalize text-slate-50 group-last:bg-slate-50 group-last:text-sky-600"78 >79 yearly80 </button>81 </div>82 </div>8384 <div className="mx-auto grid grid-cols-1 rounded-3xl border border-slate-200 bg-slate-100 p-6 max-lg:max-w-md lg:mt-10 lg:grid-cols-3 lg:max-xl:pl-0 xl:gap-x-12 xl:pr-12">85 {data.map(({ plan, price, features, description }, index: number) => {86 return (87 <div88 key={index}89 className="group relative mx-auto flex flex-col justify-between gap-y-8 rounded-3xl p-6 last:bg-slate-800 max-lg:last:mt-6 lg:last:rounded-t-none"90 >91 <div className="lg:contents">92 <div className="inset-0 hidden h-fit items-end justify-end bg-slate-800 group-last:flex max-lg:mb-6 lg:absolute lg:-translate-y-full lg:rounded-t-3xl lg:pr-6 lg:pt-6">93 <p className="w-fit rounded-full bg-sky-500/25 px-4 py-2 text-base font-semibold capitalize text-sky-400">94 most popular95 </p>96 </div>9798 <div>99 <p className="font-slate-900 mb-4 text-5xl font-black lowercase text-slate-900 first-letter:uppercase group-last:text-slate-100">100 {cost ? price.monthly : price.yearly}101 <span className="ml-2 text-base font-semibold lowercase text-slate-600 group-last:text-slate-400">102 {cost ? "/ month" : "/ year"}103 </span>104 </p>105106 <h2 className="mb-2 text-3xl font-bold lowercase tracking-tight text-slate-800 first-letter:uppercase group-last:text-slate-200">107 {plan}108 </h2>109110 <p className="mb-6 line-clamp-2 text-base text-slate-600 group-last:font-light group-last:text-slate-300 lg:h-12">111 {description}112 </p>113114 <div className="flex flex-col gap-y-4">115 {features.map(({ name }, linkIndex: number) => {116 return (117 <div key={linkIndex} className="flex gap-x-2">118 <CheckmarkIcon className="h-6 w-6 flex-shrink-0 fill-sky-600 group-last:fill-sky-600" />119120 <p className="text-base text-slate-600 group-last:text-slate-200">121 {name}122 </p>123 </div>124 );125 })}126 </div>127 </div>128 </div>129130 <Link131 href="/"132 className="z-10 h-fit w-full truncate rounded-lg bg-slate-300 px-6 py-3 text-center text-sm font-medium capitalize text-slate-600 group-last:bg-sky-700 group-last:text-slate-100"133 >134 Get Started135 </Link>136 </div>137 );138 })}139 </div>140 </div>141 );142}143
Explore Limitless Possibilities
most popular
$92/ year
basic
Unlock the potential of your business with our starter plan. Receive 24/7 live chat support, customized branding guidelines, and entry to our annual conference.
24/7 live chat support
Customized branding guidelines
Entry to annual conference
most popular
$230/ year
professional
Elevate your business with our professional plan. Utilize private forum access, customized branding guidelines, priority customer support, and 24/7 live chat support.
Private forum access
Customized branding guidelines
Priority customer support
24/7 live chat support
most popular
$430/ year
ultimate
Unleash the full potential of your business with our ultimate plan. Benefit from e-commerce integration, one-on-one design consultation, private forum access, priority customer support, and social media content creation.
E-commerce integration
One-on-one design consultation
Private forum access
Priority customer support
Social media content creation
Three-column half cards
0import React from "react";1import Link from "next/link";23const CheckmarkIcon = ({ className }) => {4 return (5 <svg6 xmlns="http://www.w3.org/2000/svg"7 viewBox="0 0 24 24"8 preserveAspectRatio="xMidYMid meet"9 className={className}10 >11 <path12 fillRule="evenodd"13 d="M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12zm13.36-1.814a.75.75 0 10-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 00-1.06 1.06l2.25 2.25a.75.75 0 001.14-.094l3.75-5.25z"14 clipRule="evenodd"15 />16 </svg>17 );18};1920const data = [21 {22 plan: "basic",23 price: "$19",24 description: "Perfect for small-scale projects and essential design files.",25 features: [26 { name: "5 GB storage space for files and documents." },27 { name: "Access to a wide range of professionally designed templates." },28 { name: "Unlimited project collaborators." },29 { name: "Export designs in multiple file formats." },30 ],31 },32 {33 plan: "standard",34 price: "$29",35 description:36 "Unlock even more possibilities with an extensive collection of premium design templates.",37 features: [38 { name: "10 GB storage space for files and documents." },39 { name: "Advanced design collaboration and commenting tools." },40 { name: "Access to a library of exclusive pre-designed templates." },41 { name: "Create custom templates tailored to your needs." },42 { name: "Invite external collaborators to your projects." },43 ],44 },45 {46 plan: "premium",47 price: "$49",48 description:49 "Gain valuable insights with comprehensive usage reports and analytics for your team.",50 features: [51 { name: "20 GB storage space for files and documents." },52 { name: "Advanced design collaboration and commenting tools." },53 { name: "Access to a library of premium pre-designed templates." },54 { name: "Create custom templates for your brand." },55 { name: "Basic design collaboration and commenting tools." },56 {57 name: "Manage your brand assets with advanced branding features.",58 },59 { name: "Detailed team usage reports and analytics." },60 ],61 },62];6364export function PricingTables8() {65 return (66 <div className="mx-auto w-full max-w-md px-8 py-12 sm:max-w-xl md:max-w-3xl lg:max-w-5xl xl:max-w-[1440px]">67 <div className="mx-auto mb-12 max-w-3xl text-center">68 <h2 className="mb-2 text-lg font-semibold text-sky-600">69 Jettwave's Pricing Structure70 </h2>71 <p className="mb-4 text-4xl font-bold tracking-tight text-slate-900">72 Investing in Technological Excellence73 </p>74 <p className="text-lg text-slate-600">75 From our basic package to our premium solutions, each tier offers a76 blend of efficiency and innovation, designed to propel your business77 to the forefront of the tech industry. Reach out to our team for a78 detailed consultation and discover the ideal package for your specific79 needs.80 </p>81 </div>82 <div className="mx-auto grid w-fit grid-cols-1 gap-x-8 gap-y-8 lg:grid-cols-3">83 {data.map(({ plan, price, description, features }, index: number) => {84 return (85 <div86 key={index}87 className="group mx-auto flex max-w-sm flex-col gap-y-8"88 >89 <div className="flex flex-col gap-y-8 rounded-3xl bg-slate-100 p-8 group-last:rounded-br-[144px] lg:gap-y-6">90 <div>91 <h2 className="mb-1 text-2xl font-bold lowercase tracking-tight text-slate-900 first-letter:uppercase">92 {plan}93 </h2>94 <p className="mb-4 line-clamp-3 text-base text-slate-600 lg:h-[72px]">95 {description}96 </p>97 <p className="font-slate-900 text-4xl font-black lowercase text-slate-900 first-letter:uppercase">98 {price}99 <span className="ml-2 text-sm font-semibold uppercase text-slate-600">100 USD101 </span>102 </p>103 </div>104 <Link105 href="#"106 className="h-fit w-fit truncate rounded-lg bg-sky-600 px-6 py-3 text-sm font-medium capitalize text-slate-50 hover:bg-sky-800 focus:outline-none focus:ring-4 focus:ring-blue-300"107 >108 Start Now109 </Link>110 </div>111 <div>112 <h2 className="mb-4 text-lg font-semibold text-sky-600 first-letter:uppercase">113 what's included114 </h2>115 <div className="flex flex-col gap-y-4">116 {features.map(({ name }, linkIndex: number) => {117 return (118 <div key={linkIndex} className="flex gap-x-2">119 <CheckmarkIcon className="h-6 w-6 flex-shrink-0 fill-sky-600" />120121 <p className="text-base text-slate-600">{name}</p>122 </div>123 );124 })}125 </div>126 </div>127 </div>128 );129 })}130 </div>131 </div>132 );133}134
Jettwave's Pricing Structure
Investing in Technological Excellence
From our basic package to our premium solutions, each tier offers a blend of efficiency and innovation, designed to propel your business to the forefront of the tech industry. Reach out to our team for a detailed consultation and discover the ideal package for your specific needs.
basic
Perfect for small-scale projects and essential design files.
$19USD
what's included
5 GB storage space for files and documents.
Access to a wide range of professionally designed templates.
Unlimited project collaborators.
Export designs in multiple file formats.
standard
Unlock even more possibilities with an extensive collection of premium design templates.
$29USD
what's included
10 GB storage space for files and documents.
Advanced design collaboration and commenting tools.
Access to a library of exclusive pre-designed templates.
Create custom templates tailored to your needs.
Invite external collaborators to your projects.
premium
Gain valuable insights with comprehensive usage reports and analytics for your team.
$49USD
what's included
20 GB storage space for files and documents.
Advanced design collaboration and commenting tools.
Access to a library of premium pre-designed templates.
Create custom templates for your brand.
Basic design collaboration and commenting tools.
Manage your brand assets with advanced branding features.
Detailed team usage reports and analytics.
Three-column with standout card
0import React from "react";1import Link from "next/link";23const CheckMarkIcon = ({ className }) => {4 return (5 <svg6 xmlns="http://www.w3.org/2000/svg"7 viewBox="0 0 24 24"8 preserveAspectRatio="xMidYMid meet"9 className={className}10 >11 <path12 fillRule="evenodd"13 clipRule="evenodd"14 d="M19.916 4.62598C20.2607 4.85575 20.3538 5.3214 20.124 5.66604L11.124 19.166C10.9994 19.353 10.7975 19.4742 10.5739 19.4964C10.3503 19.5185 10.1286 19.4392 9.96967 19.2803L3.96967 13.2803C3.67678 12.9875 3.67678 12.5126 3.96967 12.2197C4.26256 11.9268 4.73744 11.9268 5.03033 12.2197L10.3834 17.5728L18.876 4.83399C19.1057 4.48935 19.5714 4.39622 19.916 4.62598Z"15 />16 </svg>17 );18};1920const data = {21 subHeading: "Flexible Plans",22 title: "Unbeatable Code Quality and Developer Efficiency",23 paragraph:24 "Whether you're an individual developer or part of a large team, our plans are designed to meet your software engineering needs.",25 items: [26 {27 plan: "Developer",28 description: "Perfect for solo developers aiming for cost-efficiency.",29 price: 0,30 features: [31 { label: "Individual License" },32 { label: "50+ Code Quality Tools" },33 { label: "Basic DevOps Features" },34 { label: "Standard API Access" },35 { label: "CI/CD Starter Kit" },36 ],37 button: { label: "Start for Free" },38 },39 {40 badge: "Lifetime access",41 name: "Best Value",42 plan: "Enterprise",43 description:44 "Ideal for businesses requiring premium features and priority support.",45 price: 299,46 features: [47 { label: "Priority Support" },48 { label: "Advanced DevOps" },49 { label: "Priority Support" },50 { label: "Unlimited API Calls" },51 { label: "Compliance & Security Features" },52 { label: "Performance Monitoring" },53 { label: "Premium DevOps Features" },54 ],55 button: {56 label: "Choose Plan",57 },58 infoPrompt: {59 name: "Are you a student?",60 label: "Get a discount",61 link: "#",62 },63 },64 {65 plan: "Team Plus",66 description:67 "For teams that need advanced customizations and workflow integrations.",68 price: 599,69 features: [70 { label: "Team License (50 Users)" },71 { label: "Custom Workflow Integration" },72 { label: "400+ Prebuilt Components" },73 { label: "Exclusive SDK Access" },74 { label: "On-Premises Deployment Option" },75 { label: "Security Audits" },76 { label: "Dedicated Support Team" },77 ],78 button: { label: "Select Package" },79 },80 ],81};8283export function PricingTables9() {84 return (85 <div className="mx-auto w-full max-w-md px-8 py-12 sm:max-w-2xl md:max-w-3xl lg:max-w-5xl xl:max-w-7xl">86 <div className="mx-auto mb-12 max-w-3xl text-center">87 <p className="mb-1 truncate text-lg font-semibold capitalize text-sky-600 sm:mb-2 sm:text-xl">88 {data.subHeading}89 </p>90 <h1 className="mb-4 text-4xl font-extrabold tracking-tight text-slate-900 [text-wrap:balance] sm:mb-5 sm:text-5xl">91 {data.title}92 </h1>93 <p className="text-lg text-slate-600 [text-wrap:balance]">94 {data.paragraph}95 </p>96 </div>97 <div className="isolate mx-auto grid w-fit grid-cols-1 gap-y-12 lg:grid-cols-3 lg:pt-[17px]">98 {data.items.map(99 (100 {101 badge,102 name,103 plan,104 description,105 price,106 features,107 button,108 infoPrompt,109 },110 index: number111 ) => {112 return (113 <div114 key={index}115 className="group relative flex w-full flex-col justify-between gap-y-8 rounded-3xl border border-slate-200 px-8 py-9 ring-4 ring-slate-50 even:z-10 even:border-sky-200 even:ring-sky-100 max-xl:max-w-md even:max-lg:mt-[17px] max-lg:even:pt-12 lg:first:rounded-r-none lg:last:rounded-l-none lg:odd:my-[10%] lg:even:py-[calc(10%+36px)]"116 >117 <div className="absolute inset-x-0 -top-[17px] h-fit px-8 group-odd:hidden">118 <p className="mx-auto w-fit rounded-full border border-sky-200 bg-white px-8 py-1.5 text-center text-sm font-semibold uppercase text-sky-600 ring-[3px] ring-sky-100">119 {badge}120 </p>121 </div>122 <div className="relative">123 <div className="absolute -top-6 h-fit group-odd:hidden max-lg:hidden">124 <p className="truncate text-sm font-semibold capitalize text-sky-500">125 {name}126 </p>127 </div>128 <h2 className="mb-2 truncate text-2xl font-bold capitalize text-sky-600">129 {plan}130 </h2>131 <p className="mb-5 text-sm text-slate-600 [text-wrap:balance]">132 {description}133 </p>134 <div className="mb-6 flex flex-wrap items-end gap-2">135 <p className="text-4xl font-black text-slate-900 first-letter:uppercase">136 {price === 0 ? "Free" : "$" + price}137 </p>138 <p className="mb-1 text-sm font-medium text-slate-600">139 {price !== 0 && "per month"}140 </p>141 </div>142 <div className="flex flex-col gap-y-3">143 {features.map(({ label }, index2: number) => {144 return (145 <div key={index2} className="flex gap-x-2">146 <CheckMarkIcon className="my-0.5 h-4 w-4 shrink-0 fill-sky-600" />147 <div>148 <p className="text-sm text-slate-600">{label}</p>149 </div>150 </div>151 );152 })}153 </div>154 </div>155 <div className="relative">156 <button157 type="button"158 onClick={() => {}}159 className="h-fit w-full select-none whitespace-nowrap rounded-lg bg-white px-5 py-2.5 text-center text-sm text-sky-600 ring-slate-200 duration-75 hover:bg-slate-50 active:scale-95 disabled:pointer-events-none group-odd:font-medium group-odd:ring-1 group-even:bg-sky-600 group-even:text-slate-50 group-even:hover:bg-sky-700"160 >161 {button.label}162 </button>163 {infoPrompt && (164 <div className="inset-x-0 top-14 h-fit group-odd:hidden max-lg:mt-4 lg:absolute">165 <p className="text-center text-sm text-slate-500">166 {infoPrompt.name}{" "}167 <Link168 href={infoPrompt.link}169 className="inline-block font-semibold text-sky-600 hover:text-sky-700"170 >171 {infoPrompt.label}172 </Link>173 </p>174 </div>175 )}176 </div>177 </div>178 );179 }180 )}181 </div>182 </div>183 );184}185
Flexible Plans
Unbeatable Code Quality and Developer Efficiency
Whether you're an individual developer or part of a large team, our plans are designed to meet your software engineering needs.
Developer
Perfect for solo developers aiming for cost-efficiency.
Free
Individual License
50+ Code Quality Tools
Basic DevOps Features
Standard API Access
CI/CD Starter Kit
Lifetime access
Best Value
Enterprise
Ideal for businesses requiring premium features and priority support.
$299
per month
Priority Support
Advanced DevOps
Priority Support
Unlimited API Calls
Compliance & Security Features
Performance Monitoring
Premium DevOps Features
Are you a student? Get a discount
Team Plus
For teams that need advanced customizations and workflow integrations.
$599
per month
Team License (50 Users)
Custom Workflow Integration
400+ Prebuilt Components
Exclusive SDK Access
On-Premises Deployment Option
Security Audits
Dedicated Support Team
Two-column
0import React from "react";12const CheckMarkCircleIcon = ({ className }) => {3 return (4 <svg5 xmlns="http://www.w3.org/2000/svg"6 viewBox="0 0 24 24"7 preserveAspectRatio="xMidYMid meet"8 className={className}9 >10 <path11 fillRule="evenodd"12 d="M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12zm13.36-1.814a.75.75 0 10-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 00-1.06 1.06l2.25 2.25a.75.75 0 001.14-.094l3.75-5.25z"13 clipRule="evenodd"14 />15 </svg>16 );17};1819const data = {20 subHeading: "Scalable Solutions",21 title: "Maximize Development Productivity",22 paragraph:23 "Harness the power of best-in-class development tools, scalable infrastructures, and unparalleled support, all tailored to fit your team's needs.",24 items: [25 {26 plan: "Individual",27 description: "Engineered for freelancers or part-time developers.",28 price: 19,29 name: "Budget-Friendly",30 features: [31 { label: "Personal License" },32 { label: "Basic Analytics Dashboard" },33 { label: "Self-Hosted Environments" },34 { label: "Core Development Tools" },35 { label: "Limited API Requests" },36 ],37 button: { label: "Get Started" },38 },39 {40 badge: "Best for Teams",41 plan: "Business Pro",42 description:43 "Built for enterprises focusing on high performance and robust security.",44 price: 449,45 name: "Enterprise Excellence",46 features: [47 { label: "Multi-User License (Up to 50)" },48 { label: "Zero-Downtime Deployments" },49 { label: "Enhanced Security Measures" },50 { label: "Unlimited API Requests" },51 { label: "Customizable DevOps Pipelines" },52 { label: "24/7 VIP Support" },53 ],54 button: {55 label: "Choose Business Pro",56 },57 },58 ],59};6061export function PricingTables10() {62 return (63 <div className="mx-auto w-full max-w-md px-8 py-12 sm:max-w-2xl md:max-w-3xl lg:max-w-5xl xl:max-w-7xl">64 <div className="mx-auto mb-12 max-w-3xl text-center">65 <p className="mb-1 truncate text-lg font-semibold capitalize text-sky-600 sm:mb-2 sm:text-xl">66 {data.subHeading}67 </p>68 <h1 className="mb-4 text-4xl font-extrabold tracking-tight text-slate-900 [text-wrap:balance] sm:mb-5 sm:text-5xl">69 {data.title}70 </h1>71 <p className="text-lg text-slate-600 [text-wrap:balance]">72 {data.paragraph}73 </p>74 </div>75 <div className="mx-auto grid w-fit grid-cols-1 gap-x-8 gap-y-12 md:grid-cols-2">76 {data.items.map(77 (78 { badge, name, plan, description, price, features, button },79 index: number80 ) => {81 return (82 <div83 key={index}84 className="group flex w-full flex-col justify-between gap-y-8 rounded-3xl border border-slate-200 p-8 ring-4 ring-slate-50 max-md:max-w-md lg:max-w-md"85 >86 <div>87 <div className="mb-2 flex flex-wrap-reverse items-center justify-between gap-y-3">88 <h2 className="truncate text-2xl font-bold capitalize text-slate-900">89 {plan}90 </h2>91 {badge && (92 <p className="w-fit rounded-full bg-sky-100 px-2.5 py-1.5 text-xs font-semibold uppercase text-sky-600">93 {badge}94 </p>95 )}96 </div>97 <p className="mb-5 text-sm text-slate-600 [text-wrap:balance]">98 {description}99 </p>100 <div className="mb-6 flex flex-wrap items-end gap-2">101 <p className="text-4xl font-black text-slate-900 first-letter:uppercase">102 {price === 0 ? "Free" : "$" + price}103 </p>104 <p className="mb-1 text-sm font-medium text-slate-600">105 {price !== 0 && "per month"}106 </p>107 </div>108 <p className="mb-2.5 text-sm font-semibold text-slate-900">109 {name}110 </p>111 <div className="flex flex-col gap-y-3">112 {features.map(({ label }, index2: number) => {113 return (114 <div key={index2} className="flex gap-x-2">115 <CheckMarkCircleIcon className="my-0.5 h-4 w-4 shrink-0 fill-sky-600" />116 <div>117 <p className="text-sm text-slate-600">{label}</p>118 </div>119 </div>120 );121 })}122 </div>123 </div>124 <button125 type="button"126 onClick={() => {}}127 className="h-fit w-full select-none whitespace-nowrap rounded-lg bg-white px-5 py-2.5 text-center text-sm text-sky-600 ring-slate-200 duration-75 hover:bg-slate-50 active:scale-95 disabled:pointer-events-none group-odd:font-medium group-odd:ring-1 group-even:bg-sky-600 group-even:text-slate-50 group-even:hover:bg-sky-700"128 >129 {button.label}130 </button>131 </div>132 );133 }134 )}135 </div>136 </div>137 );138}139
Scalable Solutions
Maximize Development Productivity
Harness the power of best-in-class development tools, scalable infrastructures, and unparalleled support, all tailored to fit your team's needs.
Individual
Engineered for freelancers or part-time developers.
$19
per month
Budget-Friendly
Personal License
Basic Analytics Dashboard
Self-Hosted Environments
Core Development Tools
Limited API Requests
Business Pro
Best for Teams
Built for enterprises focusing on high performance and robust security.
$449
per month
Enterprise Excellence
Multi-User License (Up to 50)
Zero-Downtime Deployments
Enhanced Security Measures
Unlimited API Requests
Customizable DevOps Pipelines
24/7 VIP Support