mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-29 18:00:26 -06:00
34 lines
1.3 KiB
TypeScript
34 lines
1.3 KiB
TypeScript
import { Button } from "@formbricks/ui/Button";
|
|
|
|
export const OpenSourceInfo = () => {
|
|
return (
|
|
<div className="my-8 md:my-20">
|
|
<div className="px-8 md:px-16">
|
|
<div className=" rounded-xl bg-slate-100 px-4 py-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 it 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 space-x-2">
|
|
<Button
|
|
variant="darkCTA"
|
|
onClick={() => window.open("https://github.com/formbricks/formbricks", "_blank")}>
|
|
Star us on GitHub
|
|
</Button>
|
|
<Button
|
|
onClick={() => window.open("/docs/self-hosting/deployment", "_blank")}
|
|
variant="secondary">
|
|
Read our Docs on Self Hosting
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|