import { t } from "@lingui/core/macro"; import { useTheme } from "next-themes"; import { useState } from "react"; import Button from "~/components/Button"; import { PageHead } from "~/components/PageHead"; import Cta from "../home/components/Cta"; import Layout from "../home/components/Layout"; import Logos from "../home/components/Logos"; import FeatureComparisonTable from "./components/FeatureComparisonTable"; import PricingTiers from "./components/PricingTiers"; type FrequencyValue = "monthly" | "annually"; export default function PricingView() { const { resolvedTheme } = useTheme(); const frequencies = [ { value: "monthly" as FrequencyValue, label: t`Monthly`, priceSuffix: t`per user/month`, }, { value: "annually" as FrequencyValue, label: t`Yearly`, priceSuffix: t`per user/month`, }, ]; const [frequency, setFrequency] = useState(frequencies[1]); return (

{t`Pricing`}

{t`Simple pricing`}

{t`Get started for free, with no usage limits. For collaboration, upgrade to a plan that fits the size of your team.`}

{t`Features`}

{t`Feature breakdown`}

{t`Compare our features to see why Kan is the best choice.`}

); }