feat: Adds more svg's
This commit is contained in:
@@ -5,6 +5,7 @@ import Elementary
|
||||
import Logging
|
||||
import PsychrometricClient
|
||||
import Routes
|
||||
import Styleguide
|
||||
|
||||
public extension DependencyValues {
|
||||
var viewController: ViewController {
|
||||
@@ -48,8 +49,22 @@ extension ViewController: DependencyKey {
|
||||
switch request.route {
|
||||
case .index:
|
||||
return MainPage {
|
||||
p(.class("dark:text-gray-200")) {
|
||||
"Professional calculators for HVAC system design and troubleshooting."
|
||||
div {
|
||||
div(.class("pb-8")) {
|
||||
p(.class("dark:text-gray-200")) {
|
||||
"Professional calculators for HVAC system design and troubleshooting."
|
||||
}
|
||||
}
|
||||
div {
|
||||
p(.class("font-2xl dark:text-gray-200 pb-6")) {
|
||||
"SVG's"
|
||||
}
|
||||
div(.class("grid lg:grid-cols-8 gap-4")) {
|
||||
for svg in SVGType.allCases {
|
||||
SVG(svg, color: .blue)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
case let .moldRisk(route):
|
||||
|
||||
Reference in New Issue
Block a user