| import "./globals.css"; | |
| export const metadata = { | |
| title: "SOP Heading Enricher", | |
| description: | |
| "Upload SOP documents and use AI to automatically detect and format headings for better structure parsing.", | |
| }; | |
| export default function RootLayout({ children }) { | |
| return ( | |
| <html lang="en"> | |
| <body className="antialiased">{children}</body> | |
| </html> | |
| ); | |
| } | |