Add state enums and HomeLayout styling improvements

Introduced generated stateE15Enum and stateFdaEnum TypeScript types for both private and public API models. Updated HomeLayout to use a new CSS module for layout styling, and adjusted navbar centering logic. Commented out reset.css in index.html and made minor CSS cleanups.
This commit is contained in:
2025-12-25 04:54:44 +01:00
parent 264f0116ae
commit 00271e59e4
9 changed files with 116 additions and 6 deletions

View File

@@ -9,12 +9,14 @@ const userexists: User = {
avatarUrl: "",
};
import styles from "./HomeLayout.module.css";
export default function HomeLayout(){
return(
<>
<div className={styles.root}>
<SiteNav user={userexists} onLogin={() => {}} onLogout={() => {}} />
<Outlet />
<Footer />
</>
</div>
)
}