simple-links/src/app/layout.tsx

24 lines
524 B
TypeScript
Raw Normal View History

import { config } from "@fortawesome/fontawesome-svg-core";
import "@fortawesome/fontawesome-svg-core/styles.css";
2023-07-01 20:43:53 +00:00
import { Inter } from "next/font/google";
import "./globals.css";
import Config from "../../config.json";
config.autoAddCss = false;
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>
);
}