Spaces:
Running
Running
| import type {Metadata} from 'next'; | |
| import './globals.css'; // Global styles | |
| export const metadata: Metadata = { | |
| title: 'Optigami', | |
| description: 'Interactive 3D origami crease pattern simulator', | |
| }; | |
| export default function RootLayout({children}: {children: React.ReactNode}) { | |
| return ( | |
| <html lang="en"> | |
| <body suppressHydrationWarning>{children}</body> | |
| </html> | |
| ); | |
| } | |