TypeScript · 461 bytes Raw Blame History
1 import type { Metadata } from "next";
2 import "./globals.css";
3
4 export const metadata: Metadata = {
5 title: "VMI Virtual Memorial",
6 description: "Honoring VMI's fallen heroes who made the ultimate sacrifice in service to their country",
7 };
8
9 export default function RootLayout({
10 children,
11 }: Readonly<{
12 children: React.ReactNode;
13 }>) {
14 return (
15 <html lang="en">
16 <body className="antialiased">
17 {children}
18 </body>
19 </html>
20 );
21 }