diff --git a/components/pricing.tsx b/components/pricing.tsx new file mode 100644 index 0000000..f40a4a0 --- /dev/null +++ b/components/pricing.tsx @@ -0,0 +1,132 @@ +"use client"; +import { IconCircleCheckFilled } from "@tabler/icons-react"; +import { cn } from "@/lib/utils"; +import { tiers } from "@/constants/tier"; +import { useState } from "react"; +import { motion } from "framer-motion"; +import { Button } from "./ui/button"; + +export function Pricing() { + const [active, setActive] = useState("monthly"); + const tabs = [ + { name: "Monthly", value: "monthly" }, + { name: "Yearly", value: "yearly" }, + ]; + + return ( +
+
+ {tier.description} +
+