blob: 9fb40988eb0671b572684a7d9d8271be091ec81d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
import { Inter, Fira_Code } from "next/font/google";
import "./globals.css";
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const firaCode = Fira_Code({
variable: "--font-fira-code",
subsets: ["latin"],
});
export const metadata = {
title: "174th Battle Group",
description: "Vengeance Within Reach",
icons: {
icon: "/favicon.png",
},
};
export default function RootLayout({ children }) {
return (
<html
lang="en"
className={`${inter.variable} ${firaCode.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col">{children}</body>
</html>
);
}
|