mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-25 18:48:58 -06:00
* Duplicate Questions, Add Survey Name to Summary, Update Login Screen --------- Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
15 lines
496 B
TypeScript
15 lines
496 B
TypeScript
import { Logo } from "@/components/Logo";
|
|
|
|
export default function FormWrapper({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<div className="mx-auto flex flex-1 flex-col justify-center px-4 py-12 sm:px-6 lg:flex-none lg:px-20 xl:px-24">
|
|
<div className="mx-auto w-full max-w-sm rounded-xl bg-white p-8 shadow-xl lg:w-96">
|
|
<div className="mb-8 text-center">
|
|
<Logo className="mx-auto w-3/4" />
|
|
</div>
|
|
{children}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|