simple-links/src/app/layout.tsx
Fascinated b9093d75fe
Some checks failed
Publish Docker Image / docker (push) Failing after 33s
migrate to yml config (so I can comment the config)
2023-07-13 10:12:07 +01:00

24 lines
567 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.yml";
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>
);
}