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>
);
}