Initial commit

This commit is contained in:
DavidOnTop 2025-05-06 19:00:41 +02:00
commit cd689fde93
Signed by: DavidOnTop
GPG key ID: 8D3E9A75E3E13D89
17 changed files with 1509 additions and 0 deletions

31
src/Components/Nav.fs Normal file
View file

@ -0,0 +1,31 @@
module DOT.Components.Nav
open Sutil
open type Feliz.length
let view() =
Html.div [
Attr.style [
Css.backgroundColor "oklch(0.2 0 0)"
Css.displayFlex
Css.justifyContentSpaceAround
Css.alignItemsCenter
Css.positionFixed
Css.zIndex 5
Css.top 0
Css.height (rem 3)
Css.width (vw 100)
]
Html.div [
Html.img [
// TODO
]
]
Html.div [
]
Html.div [
]
]