Skip to content

Commit a577f0f

Browse files
committed
feat: update README.md
1 parent 38da04a commit a577f0f

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ OpenAI-Next-API 有 2 个平台可供选择,其中 **Next API** 提供按量
2222

2323
如果你在使用过程中遇到任何问题,欢迎在 [GitHub Issues](https://github.com/OpenAI-Next/Lab/issues) 中反馈。
2424

25-
您也可以加入我们的 [飞书群]() 与我们交流。
26-
2725
## 贡献代码
2826

2927
我们欢迎您为 OpenAI-Next-Lab 贡献代码,每周我们会对提交的 PR 进行 Review 并及时合并。
28+
29+
## 关联项目
30+
[ai-model-hub](https://github.com/OpenAI-Next/ai-model-hub) 维护了最新的 AI 模型信息,并提供 npm 包供开发者使用。

app/home.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"use client";
22

33
import {App as AntdApp, ConfigProvider, Row, theme} from "antd";
4-
import {ReactNode, useEffect, useState} from "react";
4+
import React, {ReactNode, useEffect, useState} from "react";
55
import dynamic from "next/dynamic";
66
import {CENTER_STYLE, Path} from "@/constant";
77
import SystemLogo from "@/app/icons/logo/logo.svg";
@@ -22,7 +22,7 @@ import Icon, {
2222
AudioFilled,
2323
CalculatorFilled,
2424
DatabaseFilled,
25-
FolderOpenFilled,
25+
FolderOpenFilled, GithubFilled,
2626
HomeFilled,
2727
MessageFilled,
2828
MoneyCollectFilled,
@@ -191,12 +191,12 @@ const App = (props: { dark: boolean, updateConfig: any }) => {
191191
{props.dark ? <SunFilled style={{color: "#FF6D00"}}/> :
192192
<MoonFilled style={{color: "#AB47BC"}}/>}
193193
</span>,
194-
// <span
195-
// key="Github"
196-
// onClick={() => window.open("https://github.com/OpenAI-Next")}
197-
// >
198-
// <GithubFilled style={{color: props.dark ? "#757575" : "#323232"}}/>
199-
// </span>,
194+
<span
195+
key="Github"
196+
onClick={() => window.open("https://github.com/OpenAI-Next/Lab")}
197+
>
198+
<GithubFilled style={{color: props.dark ? "#757575" : "#323232"}}/>
199+
</span>,
200200
];
201201
}}
202202
route={{

0 commit comments

Comments
 (0)