mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-30 02:10:12 -06:00
50 lines
1.6 KiB
TypeScript
50 lines
1.6 KiB
TypeScript
import { Button } from "./Button";
|
|
import { Heading } from "./Heading";
|
|
|
|
const gettingStarted = [
|
|
{
|
|
href: "/docs/getting-started/quickstart-in-app-survey",
|
|
name: "Quickstart",
|
|
description: "Get up and running with our cloud and JavaScript widget",
|
|
},
|
|
{
|
|
href: "/docs/getting-started/framework-guides#next-js",
|
|
name: "Next.js App",
|
|
description: "Integrate the Formbricks SDK into a Next.js application with the new app directory",
|
|
},
|
|
{
|
|
href: "/docs/self-hosting/deployment",
|
|
name: "Self Host Deployment",
|
|
description:
|
|
"Host Formbricks on your own servers, check out our dedicated Self-hosted Documentation page.",
|
|
},
|
|
{
|
|
href: "/docs/best-practices/interview-prompt",
|
|
name: "Interview Prompt",
|
|
description: "Set user interviews on autopilot for a continuous stream of interviews.",
|
|
},
|
|
];
|
|
|
|
export function GettingStarted() {
|
|
return (
|
|
<div className="my-16 xl:max-w-none">
|
|
<Heading level={2} id="getting-started">
|
|
Quick Resources
|
|
</Heading>
|
|
<div className="not-prose mt-4 grid grid-cols-1 gap-8 border-t border-slate-900/5 pt-10 sm:grid-cols-2 xl:grid-cols-4 dark:border-white/5">
|
|
{gettingStarted.map((guide) => (
|
|
<div key={guide.href}>
|
|
<h3 className="text-sm font-semibold text-slate-900 dark:text-white">{guide.name}</h3>
|
|
<p className="mt-1 text-sm text-slate-600 dark:text-slate-400">{guide.description}</p>
|
|
<p className="mt-4">
|
|
<Button href={guide.href} variant="text" arrow="right">
|
|
Read more
|
|
</Button>
|
|
</p>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|