| 12345678910111213141516171819 |
- import type { Metadata } from 'next';
- import './globals.css';
- export const metadata: Metadata = {
- title: 'Dashboard | json-render',
- description: 'AI-generated dashboard widgets with guardrails',
- };
- export default function RootLayout({
- children,
- }: {
- children: React.ReactNode;
- }) {
- return (
- <html lang="en">
- <body>{children}</body>
- </html>
- );
- }
|