Files
davila7__claude-code-templates/docs/vercel.json
Dani 76e0971528 feat(website): Move featured section above search, make skills default filter
- Move featured projects section above search bar with compact horizontal design
- Make Skills the default filter (first position, active by default)
- Add redirect from / to /skills in vercel.json
- Fix search keywords bug when keywords is an array instead of string
- Update all JS files to default to 'skills' filter

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-24 17:24:54 -05:00

51 lines
917 B
JSON

{
"redirects": [
{
"source": "/",
"destination": "/skills",
"permanent": false
}
],
"rewrites": [
{
"source": "/agents",
"destination": "/index.html"
},
{
"source": "/commands",
"destination": "/index.html"
},
{
"source": "/settings",
"destination": "/index.html"
},
{
"source": "/hooks",
"destination": "/index.html"
},
{
"source": "/mcps",
"destination": "/index.html"
},
{
"source": "/templates",
"destination": "/index.html"
},
{
"source": "/plugins",
"destination": "/index.html"
},
{
"source": "/skills",
"destination": "/index.html"
},
{
"source": "/plugin/:name",
"destination": "/plugin.html"
},
{
"source": "/component/:type/:name*",
"destination": "/component.html"
}
]
}