layout.tsx 500 B

12345678910111213141516171819202122
  1. import type { Metadata } from "next";
  2. import { Geist } from "next/font/google";
  3. import "./globals.css";
  4. const geist = Geist({ subsets: ["latin"] });
  5. export const metadata: Metadata = {
  6. title: "json-render Image Example",
  7. description: "Generate images from JSON specs with @json-render/image",
  8. };
  9. export default function RootLayout({
  10. children,
  11. }: {
  12. children: React.ReactNode;
  13. }) {
  14. return (
  15. <html lang="en">
  16. <body className={geist.className}>{children}</body>
  17. </html>
  18. );
  19. }