simple-links/src/app/layout.tsx

21 lines
382 B
TypeScript
Raw Normal View History

2023-07-01 20:43:53 +00:00
import { Inter } from "next/font/google";
import "./globals.css";
import Config from "../../config.json";
2023-07-01 21:08:39 +00:00
2023-07-01 20:43:53 +00:00
const inter = Inter({ subsets: ["latin"] });
2023-07-01 21:08:39 +00:00
export const metadata = Config.metadata;
2023-07-01 20:43:53 +00:00
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
);
}