| 1 | "use client"; |
| 2 | |
| 3 | import React from 'react'; |
| 4 | |
| 5 | export default function Layout({ |
| 6 | children, |
| 7 | }: { |
| 8 | children: React.ReactNode; |
| 9 | }) { |
| 10 | return ( |
| 11 | <div className="space-y-9"> |
| 12 | <div className="flex justify-between"> |
| 13 | <div className="self-start"> |
| 14 | <h1 className="text-3xl font-bold">{"Register"}</h1> |
| 15 | </div> |
| 16 | </div> |
| 17 | <div>{children}</div> |
| 18 | </div> |
| 19 | ); |
| 20 | } |