Update Docs, add Walkthrough Video to App & LP (#212)

* update LP with walk through

* update docs with attributes and events

* update team UI + form validation

* add walk through to app

* small fixes

---------

Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
This commit is contained in:
Johannes
2023-03-30 17:24:04 +02:00
committed by GitHub
parent a01b01d065
commit fbcc9d5628
40 changed files with 378 additions and 94 deletions
+11 -11
View File
@@ -64,9 +64,9 @@ function Header({ navigation }: any) {
onClick={() => router.push("https://github.com/formbricks/formbricks")}>
View on Github
</Button>
<Button variant="highlight" className="ml-2" onClick={() => router.push("/waitlist")}>
{/* <Button variant="highlight" className="ml-2" onClick={() => router.push("/waitlist")}>
Get started
</Button>
</Button> */}
</div>
</header>
);
@@ -124,15 +124,6 @@ export function Layout({ children, meta }: LayoutProps) {
</header>
)}
<Prose className="">{children}</Prose>
<div className="mt-16 rounded-xl border-2 border-slate-200 bg-slate-300 p-8 dark:border-slate-700/50 dark:bg-slate-800">
<h4 className="text-3xl font-semibold text-slate-500 dark:text-slate-50">Need help?</h4>
<p className="my-4 text-slate-500 dark:text-slate-400">
Join our Discord and ask away. We&apos;re happy to help where we can!
</p>
<Button variant="highlight" href="/discord" target="_blank">
Join Discord
</Button>
</div>
</article>
<dl className="mt-12 flex border-t border-slate-200 pt-6 dark:border-slate-800">
{previousPage && (
@@ -164,6 +155,15 @@ export function Layout({ children, meta }: LayoutProps) {
</div>
)}
</dl>
<div className="mt-16 rounded-xl border-2 border-slate-200 bg-slate-300 p-8 dark:border-slate-700/50 dark:bg-slate-800">
<h4 className="text-3xl font-semibold text-slate-500 dark:text-slate-50">Need help?</h4>
<p className="my-4 text-slate-500 dark:text-slate-400">
Join our Discord and ask away. We&apos;re happy to help where we can!
</p>
<Button variant="highlight" href="/discord" target="_blank">
Join Discord
</Button>
</div>
</div>
</div>
</>