refactor: move docs and examples to src folder, update README with accurate benchmarks

This commit is contained in:
2026-01-25 15:32:38 +05:30
parent 1b2da224be
commit 7bcb79c7bc
24 changed files with 73 additions and 105 deletions

View File

@@ -1,15 +0,0 @@
//- Button mixins with various styles
mixin btn(text, type)
- var btnClass = type ? "btn btn-" + type : "btn btn-primary"
button(class=btnClass)= text
mixin btn-link(href, text, type)
- var btnClass = type ? "btn btn-" + type : "btn btn-primary"
a(href=href class=btnClass)= text
mixin btn-icon(icon, text, type)
- var btnClass = type ? "btn btn-" + type : "btn btn-primary"
button(class=btnClass)
span.icon= icon
span= text