feat: Begins vendor views

This commit is contained in:
2025-01-15 16:37:18 -05:00
parent 24570e7191
commit 6f2e87e886
13 changed files with 199 additions and 301 deletions

View File

@@ -4,6 +4,7 @@ import ElementaryHTMX
struct MainPage<Inner: HTML>: SendableHTMLDocument where Inner: Sendable {
var title: String { "Purchase Orders" }
var lang: String { "en" }
let inner: Inner
let displayNav: Bool
@@ -56,7 +57,7 @@ struct RouteHeaderView: HTML {
div(.class("container"), .style("padding: 20px 20px;")) {
h1 { title }
br()
p { description }
p(.class("secondary")) { i { description } }
br()
}
}