layout.tsx 373 B

12345678910111213141516171819
  1. import type { Metadata } from "next";
  2. import "./globals.css";
  3. export const metadata: Metadata = {
  4. title: "Dashboard | json-render",
  5. description: "AI-generated dashboard widgets with guardrails",
  6. };
  7. export default function RootLayout({
  8. children,
  9. }: {
  10. children: React.ReactNode;
  11. }) {
  12. return (
  13. <html lang="en">
  14. <body>{children}</body>
  15. </html>
  16. );
  17. }