diff --git a/client/src/components/Header/Header.module.css b/client/src/components/Header/Header.module.css index e09bc6f..6149e85 100644 --- a/client/src/components/Header/Header.module.css +++ b/client/src/components/Header/Header.module.css @@ -13,3 +13,17 @@ background: transparent; color: var(--blue12); } + +.note { + text-align: center; + background-color: var(--blue2); + padding: 0.9em 0; + font-size: 0.7em; + width: 100%; + color: var(--blue12); +} + +.note a { + color: var(--blue11); + text-decoration: underline; +} diff --git a/client/src/components/Header/Header.tsx b/client/src/components/Header/Header.tsx index ec74611..092cbd9 100644 --- a/client/src/components/Header/Header.tsx +++ b/client/src/components/Header/Header.tsx @@ -29,18 +29,27 @@ const Header = () => { } return ( -
- - chessu - - -
+ <> +
+ This project is currently undergoing a major refactor & redesign. ( + + #4 + + ) +
+
+ + chessu + + +
+ ); };