"use client"; import clsx from "clsx"; import Link from "next/link"; import { useRouter } from "next/navigation"; import { useState } from "react"; import { Container } from "./Container"; import { trackGAEvent } from "./analitycs"; import { Button } from "./ui/button"; import { Switch } from "./ui/switch"; function SwirlyDoodle(props: React.ComponentPropsWithoutRef<"svg">) { return ( ); } function CheckIcon({ className, ...props }: React.ComponentPropsWithoutRef<"svg">) { return ( ); } function Plan({ name, price, description, href, features, featured = false, }: { name: string; price: string; description: string; href: string; features: Array; featured?: boolean; }) { const router = useRouter(); return (

{name}

{description}

{price}

{/* */}
); } export function Pricing() { const [monthly, setMonthly] = useState(false); return (

Simple & Affordable, {" "} Pricing.

Deploy Smarter, Scale Faster – Without Breaking the Bank

setMonthly(e)} /> {!monthly ? "Monthly" : "Yearly"}
{/* */}
); } const faqs = [ [ { question: "How does Dokploy's free plan work?", answer: "The free plan allows you to self-host Dokploy on your own infrastructure with unlimited deployments and full access to all features.", }, { question: "Do I need to provide my own server for the managed plan?", answer: "Yes, in the managed plan, you provide your own server, and we manage the Dokploy UI infrastructure for you.", }, { question: "What happens if I need more than one server?", answer: "Each additional server costs $3.99/month and can be easily added to your account.", }, ], [ { question: "Can I use my custom domain with Dokploy?", answer: "Yes, custom domain support is available on all plans, including the free version.", }, { question: "Is there a limit on the number of deployments?", answer: "No, there is no limit on the number of deployments in any of the plans.", }, { question: "Do I have to manually configure Traefik?", answer: "Dokploy offers dynamic Traefik configuration out-of-the-box, so no manual setup is needed.", }, ], [ { question: "How do automated backups work?", answer: "Automated backups are included in the managed plan and are limited to database backups only.", }, { question: "What kind of support do you offer?", answer: "We offer community support for the free plan and priority support for paid plans.", }, { question: "Is Dokploy open-source?", answer: "Yes, Dokploy is fully open-source. You can contribute or modify it as needed for your projects.", }, ], ]; export function Faqs() { return (

{"Frequently asked questions"}

If you can’t find what you’re looking for, please submit an issue to:{" "} support@dokploy.com

    {faqs.map((column, columnIndex) => (
    • {column.map((faq, faqIndex) => (
    • {faq.question}

      {faq.answer}

    • ))}
  • ))}
); }