Skip to content

Commit f782ef1

Browse files
committed
更新ai数据
1 parent 245208e commit f782ef1

File tree

3 files changed

+122
-3
lines changed

3 files changed

+122
-3
lines changed

Diff for: src/components/Header.astro

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const SOCIALNETWORKS = [
5353
<TagIcon /> Tags
5454
</HeaderLink>
5555
<HeaderLink href='/website' class='flex items-center gap-1 text-2xl md:text-base'>
56-
<WebSiteIcon /> Other
56+
<WebSiteIcon /> Website
5757
</HeaderLink>
5858
</div>
5959

Diff for: src/data/dataList.ts

+108
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ interface WebItem {
22
name: string
33
link: string
44
slogan: string
5+
tags: string[]
56
}
67

78
interface Web {
@@ -10,6 +11,113 @@ interface Web {
1011
}
1112

1213
const website: Web[] = [
14+
{
15+
title: '免费AI',
16+
list: [
17+
{
18+
name: 'coze|登录|魔法',
19+
link: 'https://www.coze.com/',
20+
slogan: '最强白嫖GPT4、定制bot',
21+
tags: 'GPT3.5、GPT4'
22+
},
23+
{
24+
name: 'Aichatos|免登录',
25+
link: 'https://chat18.aichatos.xyz/',
26+
slogan: '长期稳定免费gpt',
27+
tags: 'GPT-3.5'
28+
},
29+
{
30+
name: 'Zaiwen|登录',
31+
link: 'https://www.zaiwen.top/',
32+
slogan: 'AI、绘画、检索、文档、思维导图',
33+
tags: 'GPT3.5、GPT4、Claude、Gemini'
34+
},
35+
{
36+
name: 'CFAIWeb|免登录',
37+
link: 'https://ai.jaze.top/',
38+
slogan: 'AI问答对话、绘画、翻译',
39+
tags: 'GPT3.5、Geminipro、Sd'
40+
},
41+
{
42+
name: 'caifree|免登录',
43+
link: 'https://ai.caifree.com/',
44+
slogan: 'GPT镜像站',
45+
tags: 'GPT3.5、GPT4'
46+
},
47+
{
48+
name: 'kulayu|免登录',
49+
link: 'https://www.kulayu.com/chatgpt.html',
50+
slogan: '多平台汇聚',
51+
tags: 'GPT3.5、Geminipro'
52+
},
53+
{
54+
name: 'sharedchat|免登录',
55+
link: 'https://sharedchat.cn/shared.html',
56+
slogan: '无需账号密码,免魔法登陆,共享账号',
57+
tags: 'GPT3.5、GPT4'
58+
},
59+
{
60+
name: 'freegpts|免登录',
61+
link: 'https://share.freegpts.org/list',
62+
slogan: '无需账号密码,免魔法登陆,共享账号',
63+
tags: 'GPT3.5、GPT4'
64+
},
65+
{
66+
name: 'topai|免登录',
67+
link: 'https://home.topai.vip/',
68+
slogan: '无需账号密码,免魔法登陆,共享账号',
69+
tags: 'GPT3.5、GPT4'
70+
},
71+
{
72+
name: 'aitopk|免登录',
73+
link: 'https://aitopk.com/list',
74+
slogan: '无需账号密码,免魔法登陆,共享账号',
75+
tags: 'GPT3.5、GPT4'
76+
},
77+
{
78+
name: 'poe|登录|魔法',
79+
link: 'https://poe.com/chats',
80+
slogan: '免费GPT3、Claude-3-Haiku等,不付费也可',
81+
tags: 'GPT3.5、Claude、Gemma'
82+
},
83+
{
84+
name: 'metaso|免登录',
85+
link: 'https://metaso.cn/',
86+
slogan: '秘塔AI搜索,没有广告,直达结果',
87+
tags: 'AI搜索、学术'
88+
},
89+
{
90+
name: 'devv|魔法',
91+
link: 'https://devv.ai/zh',
92+
slogan: '最懂程序员的新一代 AI 搜索引擎',
93+
tags: 'AI搜索'
94+
},
95+
{
96+
name: 'perplexity|魔法',
97+
link: 'https://www.perplexity.ai/',
98+
slogan: '智能总结并展示信息源',
99+
tags: 'AI搜索'
100+
},
101+
{
102+
name: 'pi|免登录',
103+
link: 'https://pi.ai/talk',
104+
slogan: '深度学习和自然语言处理来提供你有用的回答和建议',
105+
tags: 'AI对话'
106+
},
107+
{
108+
name: 'kimi|免登录',
109+
link: 'https://kimi.moonshot.cn/',
110+
slogan: '国产最强AI对话,支持文件上传,互联网搜索',
111+
tags: 'AI对话、文件解析、联网搜索'
112+
},
113+
{
114+
name: 'ollama|离线',
115+
link: '/post/ollama/',
116+
slogan: '本地部署大模型,可本地离线使用',
117+
tags: 'Gemma、Llama2、Qwen'
118+
}
119+
]
120+
},
13121
{
14122
title: '部署平台',
15123
list: [

Diff for: src/pages/website/index.astro

+13-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import { website } from '@/data/dataList'
55
import ArrowUp from '@/components/icons/ArrowUp'
66
---
77

8-
<BaseLayout title='Other'>
9-
<TitlePage title='Other' />
8+
<BaseLayout title='Website'>
9+
<TitlePage title='Website' />
1010
<div>
1111
{
1212
website.length > 0 ? (
@@ -31,6 +31,9 @@ import ArrowUp from '@/components/icons/ArrowUp'
3131
<div>
3232
<p>{item.slogan}</p>
3333
</div>
34+
<div class='bottom-tags'>
35+
<span class='tag'>{item.tags}</span>
36+
</div>
3437
</a>
3538
</div>
3639
)
@@ -92,6 +95,14 @@ import ArrowUp from '@/components/icons/ArrowUp'
9295
justify-content: space-between;
9396
margin-bottom: 10px;
9497
}
98+
.bottom-tags {
99+
margin-top: 12px;
100+
span {
101+
font-size: 10px;
102+
margin-right: 10px;
103+
padding: 2px 3px;
104+
}
105+
}
95106
}
96107
}
97108
</style>

0 commit comments

Comments
 (0)