Re-organized files

This commit is contained in:
Patrick Alvin Alcala 2025-09-15 10:43:56 +08:00
parent ea7be8fb39
commit 621faea4c2
53 changed files with 1434 additions and 1059 deletions

17
fwt/components/Navbar.tsx Normal file
View file

@ -0,0 +1,17 @@
import '../styles/Navbar.sass'
import Row from './Row'
interface Props {
transparent?: boolean
children: HTMLElement
}
export default (props: Props) => {
return (
<>
<nav class="nav" role="navigation" aria-label="main navigation">
<Row content="split">{props.children}</Row>
</nav>
</>
)
}