Files
formbricks/apps/formbricks-com/components/shared/OpenSourceInfo.tsx
2024-03-21 10:17:53 +01:00

36 lines
1.4 KiB
TypeScript

import { Button } from "@formbricks/ui/Button";
export const OpenSourceInfo = () => {
return (
<div className="my-8 md:my-6">
<div className="md:px-16">
<div className=" rounded-xl bg-slate-100 p-8 md:px-12 dark:bg-slate-800">
<h2 className="text-lg font-semibold leading-7 tracking-tight text-slate-800 md:text-2xl dark:text-slate-200">
Open Source
</h2>
<p className=" my-2 text-slate-600 dark:text-slate-300">
Formbricks is an open source project. You can self-host the Community Edition for free. We provide
multiple easy deployment options as per your customisation needs. We have documented the process
of self-hosting Formbricks on your own server using Docker & Bash Scripting.
</p>
<div className="mt-4 flex flex-col gap-2 sm:flex-row">
<Button
className="inline"
variant="darkCTA"
onClick={() => window.open("https://github.com/formbricks/formbricks", "_blank")}>
Star us on GitHub
</Button>
<Button
className="inline"
onClick={() => window.open("/docs/self-hosting/deployment", "_blank")}
variant="secondary">
Read self-hosting docs
</Button>
</div>
</div>
</div>
</div>
);
};