add refactoring note on top of page

This commit is contained in:
Nathaniel Tampus
2023-02-16 22:00:19 +08:00
parent aae76e83c4
commit 903cfc10ee
2 changed files with 35 additions and 12 deletions

View File

@@ -13,3 +13,17 @@
background: transparent; background: transparent;
color: var(--blue12); 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;
}

View File

@@ -29,6 +29,14 @@ const Header = () => {
} }
return ( return (
<>
<div className={styles.note}>
This project is currently undergoing a major refactor & redesign. (
<a href="https://github.com/nizewn/chessu/pull/4" target="_blank" rel="noreferrer">
#4
</a>
)
</div>
<header className={styles.header}> <header className={styles.header}>
<Link to="/" className={styles.title}> <Link to="/" className={styles.title}>
chessu chessu
@@ -41,6 +49,7 @@ const Header = () => {
{darkTheme ? <SunIcon /> : <MoonIcon />} {darkTheme ? <SunIcon /> : <MoonIcon />}
</button> </button>
</header> </header>
</>
); );
}; };