Refine and cleanup

This commit is contained in:
KS Jannette
2026-02-13 10:42:37 -05:00
parent 02affb154c
commit 6b7324c320
10 changed files with 1306 additions and 20 deletions

View File

@@ -2,7 +2,7 @@ const Navbar = () => {
return (
<div className="main-head-box">
<div className="main-head-subbox-left">
<h1 className="main-head">kohngrüti</h1>
<h1 className="main-head">kongruity</h1>
</div>
<div className="main-head-subbox-right">
<span className="material-symbols-outlined">recenter</span>

View File

@@ -1,7 +1,7 @@
.main-head-box {
border-radius: 8px;
border: 1px solid #6dd6f4;
background-color: rgb(92, 0, 91);
background-color: rgb(92, 0 91);
display: flex;
}

View File

@@ -36,11 +36,11 @@ describe('App routing', () => {
it('should render the Home page on "/"', async () => {
renderApp('/');
expect(await screen.findByText('kohngrüti')).toBeInTheDocument();
expect(await screen.findByText('kongruity')).toBeInTheDocument();
});
it('should redirect unknown routes to Home', async () => {
renderApp('/some/random/path');
expect(await screen.findByText('kohngrüti')).toBeInTheDocument();
expect(await screen.findByText('kongruity')).toBeInTheDocument();
});
});