diff options
Diffstat (limited to 'communities/174bg/174bg.net/src/app/layout.js')
| -rw-r--r-- | communities/174bg/174bg.net/src/app/layout.js | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/communities/174bg/174bg.net/src/app/layout.js b/communities/174bg/174bg.net/src/app/layout.js deleted file mode 100644 index 9fb4098..0000000 --- a/communities/174bg/174bg.net/src/app/layout.js +++ /dev/null @@ -1,31 +0,0 @@ -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> - ); -} |
