blob: 47b1929de2cafc8266374db9f92c26c80899e046 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import "./layout.css";
export const metadata = {
title: "174th Battle Group - Star Citizen Military Organization",
description: `The "Red Right Hand" of the UEE`,
icons: {
icon: "/images/logo/logo_icon.png",
},
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body>
<header className="bg-[red] text-white text-center p-1">
This site is under construction, bare with us!
</header>
<main>{children}</main>
</body>
</html>
);
}
|