| export default function AuthLayout({ | |
| children, | |
| }: { | |
| children: React.ReactNode; | |
| }) { | |
| return ( | |
| <section className="flex items-center justify-center my-12"> | |
| {children} | |
| </section> | |
| ); | |
| } | |
| export default function AuthLayout({ | |
| children, | |
| }: { | |
| children: React.ReactNode; | |
| }) { | |
| return ( | |
| <section className="flex items-center justify-center my-12"> | |
| {children} | |
| </section> | |
| ); | |
| } | |