import Footer from "~/components/Footer"; import Header from "~/components/Header"; import Head from "next/head"; import { useState } from "react"; import { CheckIcon, XMarkIcon } from "@heroicons/react/20/solid"; import Tooltip from "~/components/Tooltip"; import { Disclosure, Transition } from "@headlessui/react"; import { ChevronUpIcon } from "@heroicons/react/20/solid"; import CTA from "~/components/CTA"; import VideoRecordModal from "~/components/VideoRecordModal"; export default function Pricing() { const [billedAnnually, setBilledAnnually] = useState(true); return ( <> Snapify | Pricing
Choose the plan that fits your needs.
setBilledAnnually(!billedAnnually)} >
{[ { name: "Free", price: { monthly: 0, annual: 0 }, features: [ { feature: "Unlimited recording", description: "Make unlimited recordings of your tab, desktop, and any application.", included: true, }, { feature: "Limited video library", description: "Store up to 10 recorded videos in your Snapify library.", included: true, }, { feature: "Video download", description: "Download your recorded videos for offline viewing or sharing with others.", included: true, }, { feature: "External video upload", description: "Upload videos recorded using other tools or platforms to your Snapify library.", included: false, }, { feature: "Custom branding", description: "Remove Snapify branding from your videos.", included: false, }, ], }, { name: "Pro", price: { monthly: 5, annual: 4 }, features: [ { feature: "Unlimited recording", description: "Make unlimited recordings of your tab, desktop, and any application.", included: true, }, { feature: "Unlimited video library", description: "Store as many recorded videos as you want in your Snapify library.", included: true, }, { feature: "Video download", description: "Download your recorded videos for offline viewing or sharing with others.", included: true, }, { feature: "External video upload", description: "Upload videos recorded using other tools or platforms to your Snapify library.", included: true, }, { feature: "Custom branding", description: "Remove Snapify branding from your videos.", included: true, }, ], }, ].map(({ name, price, features }) => (
{name === "Pro" ? (
Most Popular
) : null}
{name}
{billedAnnually ? price.annual : price.monthly} / mo.
{billedAnnually ? "billed annually" : "billed monthly"}
{features.map(({ feature, description, included }) => (
{included ? : }
{feature}
))}
))}
FAQs
{[ { question: "What are my payment options?", answer: "You can be billed monthly, but save 20% if you pay annually. We currently accept credit card payment. Contact us at hello@snapify.it if you need an alternative payment method.", }, { question: "What happens when I hit my 10 video limit on the Free plan?", answer: "Our Free plan has a limit of 10 videos. To record more than 10 videos, you will need to delete videos or upgrade to the Pro plan.", }, ].map(({ answer, question }) => ( {({ open }) => ( <> {question} {answer} )} ))}