mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-06 05:40:02 -06:00
38 lines
1.3 KiB
TypeScript
38 lines
1.3 KiB
TypeScript
import { Button } from "@formbricks/ui";
|
|
import { usePlausible } from "next-plausible";
|
|
import { useRouter } from "next/router";
|
|
import BestPracticeNavigation from "./BestPracticeNavigation";
|
|
|
|
export default function InsightOppos() {
|
|
const plausible = usePlausible();
|
|
const router = useRouter();
|
|
return (
|
|
<div className="pb-10 pt-12 md:pt-20">
|
|
<div className="px-4 py-20 text-center sm:px-6 lg:px-8" id="best-practices">
|
|
<h1 className="text-3xl font-bold tracking-tight text-slate-800 dark:text-slate-200 sm:text-4xl md:text-5xl">
|
|
Get started with{" "}
|
|
<span className="from-brand-light to-brand-dark bg-gradient-to-b bg-clip-text text-transparent xl:inline">
|
|
Best Practices
|
|
</span>
|
|
</h1>
|
|
<p className="mx-auto mt-3 max-w-md text-base text-slate-500 dark:text-slate-300 sm:text-lg md:mt-5 md:max-w-3xl md:text-xl">
|
|
Run battle-tested approaches for qualitative user research in minutes.
|
|
</p>
|
|
</div>
|
|
|
|
<BestPracticeNavigation />
|
|
|
|
<div className="mx-auto mt-4 w-fit px-4 py-2 text-center">
|
|
<Button
|
|
variant="highlight"
|
|
onClick={() => {
|
|
router.push("/demo");
|
|
plausible("subPractices_CTA_LaunchDemo");
|
|
}}>
|
|
Launch Live Demo
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|