diff options
| author | Danilo M. <danix@danix.xyz> | 2026-04-16 15:45:37 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-04-16 15:45:37 +0200 |
| commit | f77e36d9f0eb4405db46a7972738773802a8d646 (patch) | |
| tree | d252939d5bbed6b534428b9c11ba576c2dbdb9de /themes/danix-xyz-hacker/layouts/index.html | |
| parent | 4eb02ffa31a2c561c5dc4adea65f14492f945c3c (diff) | |
| download | danixxyz-f77e36d9f0eb4405db46a7972738773802a8d646.tar.gz danixxyz-f77e36d9f0eb4405db46a7972738773802a8d646.zip | |
feat: refactor homepage buttons to use btn component classes
- Update index.html to use .btn .btn-primary .btn-lg and .btn .btn-outline .btn-lg
- Update CLAUDE.md documentation
- Update settings.local.json with additional permissions
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
Diffstat (limited to 'themes/danix-xyz-hacker/layouts/index.html')
| -rw-r--r-- | themes/danix-xyz-hacker/layouts/index.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/themes/danix-xyz-hacker/layouts/index.html b/themes/danix-xyz-hacker/layouts/index.html index d1efc53..7247c3f 100644 --- a/themes/danix-xyz-hacker/layouts/index.html +++ b/themes/danix-xyz-hacker/layouts/index.html @@ -33,18 +33,18 @@ {{ $contactUrl = "/it/is/here/" }} {{ end }} - <!-- Articles Button --> + <!-- Articles Button (Primary) --> <a href="{{ $articlesUrl }}" - class="px-8 py-3 bg-accent text-white rounded font-semibold hover:opacity-90 transition-opacity text-center" + class="btn btn-primary btn-lg" > {{ i18n "articles" }} </a> - <!-- Contact Button --> + <!-- Contact Button (Outline) --> <a href="{{ $contactUrl }}" - class="px-8 py-3 border-2 border-accent text-accent rounded font-semibold hover:bg-accent/10 transition-colors text-center" + class="btn btn-outline btn-lg" > {{ i18n "contact" }} </a> |
