From e6253c6a735520cb388f53b811f401b5124af838 Mon Sep 17 00:00:00 2001 From: shadcn Date: Mon, 21 Nov 2022 16:47:31 +0400 Subject: [PATCH] feat: implement pricing page --- app/(marketing)/pricing/page.tsx | 64 ++++++++++++++++++++++++++++++++ components/icons.tsx | 2 + config/marketing.ts | 1 - 3 files changed, 66 insertions(+), 1 deletion(-) create mode 100644 app/(marketing)/pricing/page.tsx diff --git a/app/(marketing)/pricing/page.tsx b/app/(marketing)/pricing/page.tsx new file mode 100644 index 0000000..5a840eb --- /dev/null +++ b/app/(marketing)/pricing/page.tsx @@ -0,0 +1,64 @@ +import Link from "next/link" + +import { Icons } from "@/components/icons" + +export default function PricingPage() { + return ( +
+
+

+ Simple, transparent pricing +

+

+ Unlock all features including unlimited posts for your blog. +

+
+
+
+

+ What's included in the PRO plan +

+
    +
  • + Unlimited Posts +
  • +
  • + Unlimited Users +
  • + +
  • + Custom domain +
  • +
  • + Dashboard Analytics +
  • +
  • + Access to Discord +
  • +
  • + Premium Support +
  • +
+
+
+
+

$19

+

Billed Monthly

+
+ + Get Started + +
+
+
+

+ Taxonomy app is a demo app.{" "} + You can test the upgrade and won't be charged. +

+
+
+ ) +} diff --git a/components/icons.tsx b/components/icons.tsx index cc09277..b5fb6d0 100644 --- a/components/icons.tsx +++ b/components/icons.tsx @@ -1,6 +1,7 @@ import { AlertTriangle, ArrowRight, + Check, ChevronLeft, ChevronRight, Command, @@ -45,4 +46,5 @@ export const Icons = { pizza: Pizza, gitHub: Github, twitter: Twitter, + check: Check, } diff --git a/config/marketing.ts b/config/marketing.ts index e58530d..2d4533f 100644 --- a/config/marketing.ts +++ b/config/marketing.ts @@ -10,7 +10,6 @@ export const marketingConfig: MarketingConfig = { { title: "Pricing", href: "/pricing", - disabled: true, }, { title: "Blog",