12 lines
402 B
TypeScript
12 lines
402 B
TypeScript
import type React from 'react'
|
|
|
|
export function AuthLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<main className="flex min-h-dvh flex-col p-2">
|
|
<div className="flex grow items-center justify-center p-6 lg:rounded-lg lg:bg-white lg:p-10 lg:shadow-xs lg:ring-1 lg:ring-zinc-950/5 dark:lg:bg-zinc-900 dark:lg:ring-white/10">
|
|
{children}
|
|
</div>
|
|
</main>
|
|
)
|
|
}
|