Skip to content

Commit fae6157

Browse files
committed
fix
1 parent 5795e2d commit fae6157

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

s-deploy.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ resources:
4444
- DELETE
4545
authType: anonymous
4646

47-
fc3_domain_0:
48-
component: fc3-domain
49-
props:
50-
region: ${vars.region}
51-
domainName: auto
52-
protocol: HTTP
53-
routeConfig:
54-
routes:
55-
- path: /*
56-
functionName: ${resources.framework.props.functionName}
47+
# fc3_domain_0:
48+
# component: fc3-domain
49+
# props:
50+
# region: ${vars.region}
51+
# domainName: auto
52+
# protocol: HTTP
53+
# routeConfig:
54+
# routes:
55+
# - path: /*
56+
# functionName: ${resources.framework.props.functionName}

src/components/home/BuildForms.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import SmoothButton from "./SmoothButton.astro";
1919
<span>并且可以在流水线无缝集成</span>
2020

2121
<div class="mt-[2vw] text-[1vw]">
22-
<SmoothButton href="https://registry.serverless-devs.com/application.html">查看更多</SmoothButton>
22+
<SmoothButton href="https://registry.serverless-devs.com">查看更多</SmoothButton>
2323
</div>
2424
</div>
2525

@@ -39,7 +39,7 @@ import SmoothButton from "./SmoothButton.astro";
3939
<span>都是精心打磨的云资源管理利器</span>
4040

4141
<div class="mt-[2vw] text-[1vw]">
42-
<SmoothButton href="https://registry.serverless-devs.com/component.html">查看更多</SmoothButton>
42+
<SmoothButton href="https://registry.serverless-devs.com">查看更多</SmoothButton>
4343
</div>
4444
</div>
4545
</div>
@@ -54,7 +54,7 @@ import SmoothButton from "./SmoothButton.astro";
5454
<span>实现服务的热启动</span>
5555

5656
<div class="mt-[2vw] text-[1vw]">
57-
<SmoothButton href="https://registry.serverless-devs.com/plugin.html">查看更多</SmoothButton>
57+
<SmoothButton href="https://registry.serverless-devs.com">查看更多</SmoothButton>
5858
</div>
5959
</div>
6060

src/components/home/Hero.astro

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ import SmoothButton from "./SmoothButton.astro";
1818
HOT !
1919
</div>
2020
<p class="text-white text-xs mr-2">
21-
<a href="https://registry.serverless-devs.com/details.html?name=fc-stable-diffusion-v3&package_type=v3" target="_blank" class="hover:text-[#ee6590]">Stable-Diffusion</a>,
22-
<a href="https://registry.serverless-devs.com/details.html?name=fc-comfyui&package_type=v3" target="_blank" class="hover:text-[#ee6590]">ComfyUI</a>,
23-
<a href="https://registry.serverless-devs.com/details.html?name=cosyvoice&package_type=v3" target="_blank" class="hover:text-[#ee6590]">CosyVoice</a>,
24-
<a href="https://registry.serverless-devs.com/details.html?name=ollama&package_type=v3" target="_blank" class="hover:text-[#ee6590]">Ollama</a>,
25-
<a href="https://registry.serverless-devs.com/details.html?name=fc-gpt-sovits&package_type=v3" target="_blank" class="hover:text-[#ee6590]">GPT-SoVITS</a>
21+
<a href="https://registry.serverless-devs.com/details/fc-stable-diffusion-v3" target="_blank" class="hover:text-[#ee6590]">Stable-Diffusion</a>,
22+
<a href="https://registry.serverless-devs.com/details/fc-comfyui" target="_blank" class="hover:text-[#ee6590]">ComfyUI</a>,
23+
<a href="https://registry.serverless-devs.com/details/cosyvoice" target="_blank" class="hover:text-[#ee6590]">CosyVoice</a>,
24+
<a href="https://registry.serverless-devs.com/details/ollama" target="_blank" class="hover:text-[#ee6590]">Ollama</a>,
25+
<a href="https://registry.serverless-devs.com/details/fc-gpt-sovits" target="_blank" class="hover:text-[#ee6590]">GPT-SoVITS</a>
2626
等应用模版上架</p>
2727
<!-- <Picture
2828
src={nextIcon}

src/components/home/Templates.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const ALL_TEMPLATE_SORTS = [{
5050
sort.templates.map(template => (
5151
<LineCard
5252
title={template?.package?.name || template.name}
53-
url={`https://registry.serverless-devs.com/details.html?name=${template?.package?.name || template.name}&package_type=v3`}
53+
url={`https://registry.serverless-devs.com/details/${template?.package?.name || template.name}`}
5454
description={template?.package?.description || template.description}
5555
date={template?.package?.latest_create || template.latest_create}
5656
hot={template?.package?.download || template.download}

0 commit comments

Comments
 (0)