Files
stack/apps/web/src/app/onboarding/layout.tsx
Jason Woltje 01ae164b61
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
feat(web): onboarding wizard (MS22-P1f) (#616)
Co-authored-by: Jason Woltje <jason@diversecanvas.com>
Co-committed-by: Jason Woltje <jason@diversecanvas.com>
2026-03-01 16:07:22 +00:00

10 lines
349 B
TypeScript

import type { ReactNode } from "react";
export default function OnboardingLayout({ children }: { children: ReactNode }): React.JSX.Element {
return (
<main className="flex min-h-screen items-center justify-center bg-gradient-to-b from-slate-50 to-white p-4 sm:p-6">
<div className="w-full max-w-3xl">{children}</div>
</main>
);
}