Files
formbricks/apps/formbricks-com/components/shared/OpenSourceInfo.tsx
Shubham Palriwala 48d8fc6aca feat: add new pricing table to formbricks-com (#869)
* init: pricing page

* fix: ux changes
2023-09-30 11:01:46 +02:00

36 lines
1.5 KiB
TypeScript

import { Button } from "@formbricks/ui";
export const OpenSourceInfo = () => {
return (
<div className="my-8 md:my-20">
<div className="px-4 md:px-16">
<div className=" rounded-xl bg-slate-100 px-4 py-4 dark:bg-slate-800 md:px-12">
<h2 className="text-lg font-semibold leading-7 tracking-tight text-slate-800 dark:text-slate-200 md:text-2xl">
Open Source
</h2>
<p className=" text-slate-800 dark:text-slate-200">
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, and Building from Source.
</p>
<div className="flex items-center justify-center">
<Button
className="mr-4 mt-4 justify-center px-8 text-xs shadow-sm md:text-lg"
variant="highlight"
onClick={() => window.open("https://github.com/formbricks/formbricks", "_blank")}>
Star us on GitHub
</Button>
<Button
className="ml-4 mt-4 justify-center px-8 text-xs shadow-sm md:text-lg"
onClick={() => window.open("/docs/self-hosting/deployment", "_blank")}
variant="secondary">
Read our Docs on Self Hosting
</Button>
</div>
</div>
</div>
</div>
);
};