fix waitlist dark (#186)

This commit is contained in:
Johannes
2023-01-19 09:02:20 -06:00
committed by GitHub
parent 5bb3bd2031
commit 75d0f51df4
8 changed files with 180 additions and 9 deletions

View File

@@ -17,7 +17,7 @@ export default function Textarea({ element, register, onSubmit }: TextareaProps)
</label>
<textarea
rows={element.frontend?.rows || 4}
className="focus:border-brand focus:ring-brand mx-auto mt-4 block w-full max-w-xl rounded-md border-gray-300 shadow-sm sm:text-sm"
className="focus:border-brand focus:ring-brand mx-auto mt-4 block w-full max-w-xl rounded-md border-gray-300 text-slate-700 shadow-sm dark:bg-slate-700 dark:text-slate-200 dark:placeholder:text-slate-400 sm:text-sm"
placeholder={element.frontend?.placeholder || ""}
required={!!element.frontend?.required}
{...register(element.name!)}

View File

@@ -1,25 +1,24 @@
import { PlusIcon, SquaresPlusIcon, ChartBarIcon } from "@heroicons/react/24/outline";
import clsx from "clsx";
import { TabletTouchIcon, UserDeveloperIcon, CodeFileIcon } from "@formbricks/ui";
import HeadingCentered from "../shared/HeadingCentered";
const features = [
{
id: "devAttention",
name: "Minimal Dev Attention",
description: "All you want is building your product. Set it up once, keep insights flowing in..",
icon: PlusIcon,
description: "All you want is building your product. Set it up once, keep insights flowing in.",
icon: UserDeveloperIcon,
},
{
id: "nativeLookFeel",
name: "Native Look & Feel",
description: "No more UX clutter. Use headless forms or highly customizabale UI components.",
icon: SquaresPlusIcon,
icon: TabletTouchIcon,
},
{
id: "openSourcer",
name: "Open Source",
description: "Own your data. Run Formbricks on your servers and comply with all regulation.",
icon: ChartBarIcon,
icon: CodeFileIcon,
},
];
export default function Features() {

View File

@@ -59,7 +59,10 @@ export default function Footer() {
Footer
</h2>
<div className="mx-auto flex max-w-7xl flex-col space-y-6 px-4 py-12 text-center sm:px-6 lg:py-16 lg:px-8">
<FooterLogo className="mx-auto h-8 w-auto sm:h-10" />
<Link href="/">
<span className="sr-only">Formbricks</span>
<FooterLogo className="mx-auto h-8 w-auto sm:h-10" />
</Link>
<p className="text-base text-slate-500 dark:text-slate-400">Experience Management for B2B SaaS</p>
<div className="border-gray-500">
<p className="text-sm text-slate-400 dark:text-gray-500">

View File

@@ -47,7 +47,7 @@ const WaitlistPage = () => (
</p>
</div>
<div className="mx-auto my-6 w-full max-w-5xl rounded-xl bg-slate-100 px-8 py-10 md:my-12 md:px-16 md:py-20">
<div className="mx-auto my-6 w-full max-w-5xl rounded-xl bg-slate-100 px-8 py-10 dark:bg-slate-800 md:my-12 md:px-16 md:py-20">
<Survey
formbricksUrl="https://app.formbricks.com"
formId="cld37mt2i0000ld08p9q572bc"