aboutsummaryrefslogtreecommitdiff
path: root/174bg/website/src/app/layout.js
diff options
context:
space:
mode:
Diffstat (limited to '174bg/website/src/app/layout.js')
-rw-r--r--174bg/website/src/app/layout.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/174bg/website/src/app/layout.js b/174bg/website/src/app/layout.js
index c12d68f..47b1929 100644
--- a/174bg/website/src/app/layout.js
+++ b/174bg/website/src/app/layout.js
@@ -11,7 +11,12 @@ export const metadata = {
export default function RootLayout({ children }) {
return (
<html lang="en">
- <body>{children}</body>
+ <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>
);
}