simple-links/src/app/layout.tsx
Fascinated cc0c9a14e1
All checks were successful
Publish Docker Image / docker (push) Successful in 1m47s
use spaces instead of tabs
2023-07-10 05:06:28 +01:00

24 lines
568 B
TypeScript

import { config } from "@fortawesome/fontawesome-svg-core";
import "@fortawesome/fontawesome-svg-core/styles.css";
import { Inter } from "next/font/google";
import "./globals.css";
import Config from "../../config.json";
config.autoAddCss = false;
const inter = Inter({ subsets: ["latin"] });
export const metadata = Config.metadata; // Site metadata from the config
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
);
}