feat: Updates to network article.
All checks were successful
CI / release (push) Successful in 6m9s

This commit is contained in:
2025-04-08 13:36:39 -04:00
parent d0383b0d4e
commit a53e808aec
10 changed files with 122 additions and 50 deletions

View File

@@ -46,12 +46,15 @@ extension HomeLink: NodeConvertible {
}
private func internalLink() -> Node {
a(class: "bg-orange-400 border-2 border-green-600 p-4 rounded-lg [&:hover]:bg-orange-500", href: href) {
a(
class: "bg-orange-400 border-2 border-green-600 p-4 rounded-lg [&:hover]:bg-orange-500",
href: href
) {
div(class: "flex text-3xl") {
i(class: "mt-1", customAttributes: ["data-lucide": icon])
p(class: "ps-2") { title }
span(class: "ps-2") { title }
}
p(class: "text-sm") { description }
span(class: "text-sm") { description }
}
}
@@ -64,9 +67,9 @@ extension HomeLink: NodeConvertible {
) {
div(class: "flex text-3xl") {
i(class: "mt-1", customAttributes: ["data-lucide": icon])
p(class: "ps-2") { title }
span(class: "ps-2") { title }
}
p(class: "text-sm") { description }
span(class: "text-sm") { description }
}
}
}