29 lines
697 B
TypeScript
29 lines
697 B
TypeScript
import type { Metadata } from "next";
|
|
import { Inter, Newsreader } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
const inter = Inter({ subsets: ["latin"], variable: "--font-inter" });
|
|
const newsreader = Newsreader({
|
|
subsets: ["latin"],
|
|
variable: "--font-newsreader",
|
|
style: "italic",
|
|
display: "swap",
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Gatekeeper | Access Control",
|
|
description: "Mintel Infrastructure Protection",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en" className={`${inter.variable} ${newsreader.variable}`}>
|
|
<body className="antialiased">{children}</body>
|
|
</html>
|
|
);
|
|
}
|