Component names now reflect filesystem location using / as path separator and : as namespace separator for shared components: ~sx-header → ~layouts/header ~layout-app-body → ~shared:layout/app-body ~blog-admin-dashboard → ~admin/dashboard 209 files, 4,941 replacements across all services. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
252 B
Plaintext
10 lines
252 B
Plaintext
;; Orders account-nav-item fragment handler
|
|
;; returns: sx
|
|
;;
|
|
;; Renders the "orders" link for the account dashboard nav.
|
|
|
|
(defhandler account-nav-item (&key)
|
|
(~shared:fragments/account-nav-item
|
|
:href (app-url "orders" "/")
|
|
:label "orders"))
|