| 1234567891011121314151617181920212223 |
- import type { Metadata } from "next";
- import { GeistSans } from "geist/font/sans";
- import { GeistMono } from "geist/font/mono";
- import "./globals.css";
- export const metadata: Metadata = {
- title: "Next Website Builder | json-render",
- description:
- "Build entire Next.js websites from JSON specs with @json-render/next",
- icons: { icon: "/icon.svg" },
- };
- export default function RootLayout({
- children,
- }: {
- children: React.ReactNode;
- }) {
- return (
- <html lang="en" className={`${GeistSans.variable} ${GeistMono.variable}`}>
- <body className="font-sans antialiased">{children}</body>
- </html>
- );
- }
|