diff options
| author | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-07-30 08:10:18 +0100 |
|---|---|---|
| committer | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-07-30 08:10:18 +0100 |
| commit | 2059f76cb71338537a706085f88d19a40089d0f2 (patch) | |
| tree | 532761509b17de81cca65ccbb7034354066e1887 /174bg | |
| parent | ab4acc5679ab64537bb012a6685a2798ecbe23e7 (diff) | |
| download | unnamed-group-2059f76cb71338537a706085f88d19a40089d0f2.tar unnamed-group-2059f76cb71338537a706085f88d19a40089d0f2.tar.gz unnamed-group-2059f76cb71338537a706085f88d19a40089d0f2.tar.bz2 unnamed-group-2059f76cb71338537a706085f88d19a40089d0f2.tar.xz unnamed-group-2059f76cb71338537a706085f88d19a40089d0f2.zip | |
add header warning
Diffstat (limited to '174bg')
| -rw-r--r-- | 174bg/website/src/app/layout.js | 7 |
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> ); } |
