Skip to content

Commit 32099bf

Browse files
committed
feat: 修改logo
1 parent 5529ece commit 32099bf

File tree

14 files changed

+150
-12
lines changed

14 files changed

+150
-12
lines changed

app/components/exporter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ export function ImagePreviewer(props: {
546546
<div>
547547
<div className={styles["main-title"]}>NextChat</div>
548548
<div className={styles["sub-title"]}>
549-
github.com/Yidadaa/ChatGPT-Next-Web
549+
sub-title----
550550
</div>
551551
<div className={styles["icons"]}>
552552
<ExportAvatar avatar={config.avatar} />

app/components/sidebar.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ export function SideBar(props: { className?: string }) {
155155
>
156156
<div className={styles["sidebar-header"]} data-tauri-drag-region>
157157
<div className={styles["sidebar-title"]} data-tauri-drag-region>
158-
NextChat
158+
AiXbox
159159
</div>
160160
<div className={styles["sidebar-sub-title"]}>
161161
Build your own AI assistant.
@@ -216,11 +216,11 @@ export function SideBar(props: { className?: string }) {
216216
<IconButton icon={<SettingsIcon />} shadow />
217217
</Link>
218218
</div>
219-
<div className={styles["sidebar-action"]}>
219+
{/* <div className={styles["sidebar-action"]}>
220220
<a href={REPO_URL} target="_blank" rel="noopener noreferrer">
221221
<IconButton icon={<GithubIcon />} shadow />
222222
</a>
223-
</div>
223+
</div> */}
224224
</div>
225225
<div>
226226
<IconButton

app/config/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export const getServerSideConfig = () => {
7575
const randomIndex = Math.floor(Math.random() * apiKeys.length);
7676
const apiKey = apiKeys[randomIndex];
7777
console.log(
78-
`[Server Config] using ${randomIndex + 1} of ${apiKeys.length} api key`,
78+
`[Server Config] using ${randomIndex + 1} of ${apiKeyEnvVar+apiKeys.length} api key`,
7979
);
8080

8181
return {

app/constant.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
export const OWNER = "Yidadaa";
2-
export const REPO = "ChatGPT-Next-Web";
1+
export const OWNER = "willmakemoney2024";
2+
export const REPO = "web";
33
export const REPO_URL = `https://github.com/${OWNER}/${REPO}`;
44
export const ISSUE_URL = `https://github.com/${OWNER}/${REPO}/issues`;
55
export const UPDATE_URL = `${REPO_URL}#keep-updated`;

app/icons/chatgpt.png

5.46 KB
Loading

app/icons/chatgpt.svg

Lines changed: 43 additions & 1 deletion
Loading

app/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { GoogleTagManager } from "@next/third-parties/google";
1010
const serverConfig = getServerSideConfig();
1111

1212
export const metadata: Metadata = {
13-
title: "NextChat",
13+
title: "AiXbox",
1414
description: "Your personal ChatGPT Chat Bot.",
1515
viewport: {
1616
width: "device-width",
@@ -22,7 +22,7 @@ export const metadata: Metadata = {
2222
{ media: "(prefers-color-scheme: dark)", color: "#151515" },
2323
],
2424
appleWebApp: {
25-
title: "NextChat",
25+
title: "AiXbox",
2626
statusBarStyle: "default",
2727
},
2828
};

app/store/access.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ const DEFAULT_OPENAI_URL =
1616
? DEFAULT_API_HOST + "/api/proxy/openai"
1717
: ApiPath.OpenAI;
1818

19+
console.log(DEFAULT_OPENAI_URL,'ddd')
20+
1921
const DEFAULT_ACCESS_STATE = {
2022
accessCode: "",
2123
useCustomConfig: false,

bun.lockb

334 KB
Binary file not shown.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "nextchat",
2+
"name": "aixbox",
33
"private": false,
44
"license": "mit",
55
"scripts": {

0 commit comments

Comments
 (0)