layout.tsx 624 B

1234567891011121314151617181920212223
  1. import type { Metadata } from "next";
  2. import { GeistSans } from "geist/font/sans";
  3. import { GeistMono } from "geist/font/mono";
  4. import "./globals.css";
  5. export const metadata: Metadata = {
  6. title: "Next Website Builder | json-render",
  7. description:
  8. "Build entire Next.js websites from JSON specs with @json-render/next",
  9. icons: { icon: "/icon.svg" },
  10. };
  11. export default function RootLayout({
  12. children,
  13. }: {
  14. children: React.ReactNode;
  15. }) {
  16. return (
  17. <html lang="en" className={`${GeistSans.variable} ${GeistMono.variable}`}>
  18. <body className="font-sans antialiased">{children}</body>
  19. </html>
  20. );
  21. }