import Link from "next/link";
import {
Disclosure,
DisclosureButton,
DisclosurePanel,
} from "@headlessui/react";
import { HiMiniMinusSmall, HiMiniPlusSmall } from "react-icons/hi2";
const Text = ({ children }: { children: React.ReactNode }) => {
return (
{children}
);
};
const faqs = [
{
question: "Why make an open source Trello?",
answer: (
When Trello launched in 2011, it blew everyone away with its carefully
designed simplicity, but over time (and atlassification) it lost its
magic and grew into something closer to "Jira Lite". This project is our
attempt to recapture the original magic of Trello’s simplicity, in open
source.
),
},
{
question: "What's the difference between Kan and Trello?",
answer: (
The main difference between Kan and Trello is that Kan is open source,
allowing anyone to view, modify, and contribute to our code. Our cloud
offering also offers no restrictions on features for individual use,
whereas Trello locks basic features such as the number of boards you can
create behind a paywall.
),
},
{
question: "How is the project funded?",
answer: (
For long-term sustainability, we recognise all good open source projects
need a source of revenue. Ours comes from the paid cloud offering for
workspaces with multiple users (free during the beta) and for custom
workspace slugs. There's no obligation to use it, and you can self-host
the software on your own infrastructure free of charge.
),
},
{
question: "How do I import my Trello boards?",
answer: (
Importing your Trello boards into Kan is easy. You can follow our
step-by-step guide{" "}
here
.
),
},
{
question: "How do I get a custom URL?",
answer: (
You can get a custom workspace URL, like{" "}
kan.bn/kan
, by going into your{" "}
workspace settings
{" "}
and purchasing a pro workspace subscription. All subscriptions help fund
the development of the project!
),
},
{
question: "Do you offer a free plan?",
answer: (
Yes, we offer an forever free plan for individual use. No restrictions,
no paywalls, no limits.
),
},
{
question: "What license are you using?",
answer: (
We are using the{" "}
AGPL-3.0 license
.
),
},
{
question: "How do I invite team members?",
answer: (
You can invite team members by clicking the "Invite" button in the top
right corner of the{" "}
members page
{" "}
and entering their email address. They will receive an email with a link
to join the workspace.
),
},
{
question: "How do I self-host?",
answer: (
You can self-host by following the instructions in our{" "}
repo
.
),
},
];
const Faqs = () => {
return (
FAQs
Questions?
Find answers to common questions about the project. Can't find what
you're looking for? Feel free to{" "}
contact us
.