New sxc/ content tree with 120 page files across docs, examples, home, and reference demos. sx/sx/testing/ adds page-runner.sx (317L) and index-runner.sx (394L) — SX-native test runner pages for browser-based evaluation. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
10 lines
552 B
Plaintext
10 lines
552 B
Plaintext
(defcomp ()
|
|
(div (~tw :tokens "max-w-4xl mx-auto px-6 py-12 border-t border-stone-200")
|
|
(p (~tw :tokens "text-stone-500 text-sm")
|
|
"sx is heavily inspired by "
|
|
(a :href "https://htmx.org" (~tw :tokens "text-violet-600 hover:underline") "htmx")
|
|
" by Carson Gross. This documentation site is modelled on "
|
|
(a :href "https://four.htmx.org" (~tw :tokens "text-violet-600 hover:underline") "four.htmx.org")
|
|
". htmx showed that hypermedia belongs on the server. "
|
|
"sx takes that idea and wraps it in parentheses.")))
|