feat: deploy skill

This commit is contained in:
2026-04-12 20:15:41 +08:00
parent 6fe04f4893
commit 71c604411d
37 changed files with 1701 additions and 2 deletions

View File

@@ -21,6 +21,13 @@ server {
proxy_cache off;
}
location /docs/ {
proxy_pass http://docs:80/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location / {
try_files $uri $uri/ /index.html;
}

View File

@@ -10,7 +10,7 @@ export default function FooterSection() {
links: [
{ label: t('footer.features'), href: '#features' },
{ label: t('footer.pricing'), href: '#pricing' },
{ label: t('footer.docs'), href: '#' },
{ label: t('footer.docs'), href: '/docs/' },
{ label: t('footer.changelog'), href: '#' },
],
},

View File

@@ -131,7 +131,7 @@ export default function HeroSection() {
{t('hero.cta')}
</Link>
<a
href="#features"
href="/docs/"
className="px-7 py-3.5 rounded-xl text-base font-medium transition-all duration-200 hover:-translate-y-0.5"
style={{
color: 'var(--text-secondary)',