aboutsummaryrefslogtreecommitdiff
path: root/174bg/website-nextjs/src/app/layout.js
blob: c2b65f2e8fc451bc29a9e12068dcf2e95216f188 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import "./layout.css";

export const metadata = {
  title: "174th Battle Group - Star Citizen Military Organization",
  description: `The "Red Right Hand" of the UEE`,
  icons: {
    icon: "/logo.png",
  },
};

export default function RootLayout({ children }) {
  return (
    <html lang="en">
      <body>{children}</body>
    </html>
  );
}