feat: deploy skill
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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: '#' },
|
||||
],
|
||||
},
|
||||
|
||||
@@ -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)',
|
||||
|
||||
Reference in New Issue
Block a user