| 12345678910111213141516171819202122 |
- import type { Metadata } from "next";
- import { Geist } from "next/font/google";
- import "./globals.css";
- const geist = Geist({ subsets: ["latin"] });
- export const metadata: Metadata = {
- title: "json-render Image Example",
- description: "Generate images from JSON specs with @json-render/image",
- };
- export default function RootLayout({
- children,
- }: {
- children: React.ReactNode;
- }) {
- return (
- <html lang="en">
- <body className={geist.className}>{children}</body>
- </html>
- );
- }
|