Skip to content

Commit

Permalink
feat: update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Kadxy committed Sep 10, 2024
1 parent 38da04a commit a577f0f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ OpenAI-Next-API 有 2 个平台可供选择,其中 **Next API** 提供按量

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

您也可以加入我们的 [飞书群]() 与我们交流。

## 贡献代码

我们欢迎您为 OpenAI-Next-Lab 贡献代码,每周我们会对提交的 PR 进行 Review 并及时合并。

## 关联项目
[ai-model-hub](https://github.com/OpenAI-Next/ai-model-hub) 维护了最新的 AI 模型信息,并提供 npm 包供开发者使用。
16 changes: 8 additions & 8 deletions app/home.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use client";

import {App as AntdApp, ConfigProvider, Row, theme} from "antd";
import {ReactNode, useEffect, useState} from "react";
import React, {ReactNode, useEffect, useState} from "react";
import dynamic from "next/dynamic";
import {CENTER_STYLE, Path} from "@/constant";
import SystemLogo from "@/app/icons/logo/logo.svg";
Expand All @@ -22,7 +22,7 @@ import Icon, {
AudioFilled,
CalculatorFilled,
DatabaseFilled,
FolderOpenFilled,
FolderOpenFilled, GithubFilled,
HomeFilled,
MessageFilled,
MoneyCollectFilled,
Expand Down Expand Up @@ -191,12 +191,12 @@ const App = (props: { dark: boolean, updateConfig: any }) => {
{props.dark ? <SunFilled style={{color: "#FF6D00"}}/> :
<MoonFilled style={{color: "#AB47BC"}}/>}
</span>,
// <span
// key="Github"
// onClick={() => window.open("https://github.com/OpenAI-Next")}
// >
// <GithubFilled style={{color: props.dark ? "#757575" : "#323232"}}/>
// </span>,
<span
key="Github"
onClick={() => window.open("https://github.com/OpenAI-Next/Lab")}
>
<GithubFilled style={{color: props.dark ? "#757575" : "#323232"}}/>
</span>,
];
}}
route={{
Expand Down

0 comments on commit a577f0f

Please sign in to comment.