| 1 | "use client"; |
| 2 | |
| 3 | import { type ReactNode } from "react"; |
| 4 | |
| 5 | interface LayoutProps { |
| 6 | children: ReactNode; |
| 7 | } |
| 8 | |
| 9 | export default function Layout({ children }: LayoutProps) { |
| 10 | return ( |
| 11 | <div className="flex h-full w-full flex-col"> |
| 12 | <main className="relative flex flex-1">{children}</main> |
| 13 | </div> |
| 14 | ); |
| 15 | } |
| 16 |