next.js/examples/with-orbit-components/app/layout.tsx
layout.tsx28 lines545 B
import type { Metadata } from "next";
import { Inter } from "next/font/google";

import "./globals.css";

export const metadata: Metadata = {
  title: "With Orbit Components",
  description: "Next.js example with Orbit components.",
};

const inter = Inter({
  display: "swap",
  subsets: ["latin"],
  weight: ["400", "500", "600"],
});

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en">
      <body className={inter.className}>{children}</body>
    </html>
  );
}
Quest for Codev2.0.0
/
SIGN IN