Skip to content
Open

Dev #90

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![](assets/preview.png)

<h2 align="center">ChatGPT-Vercel</h2>
<h2 align="center">NEXTera-Vercel</h2>

<p align="center">
<a href="https://github.com/GPTGenius/chatgpt-vercel/tags">
Expand Down
6 changes: 3 additions & 3 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ const { title } = Astro.props;
--scrollbar-background-rgb: 237, 238, 238;
--theme-purple: linear-gradient(
45deg,
rgba(124, 58, 237, 0.8),
rgba(218, 98, 196, 0.8) 30%,
rgba(58, 237, 88, 0.8),
rgba(217, 237, 39, 0.8) 30%,
white 80%
);
--theme-purple-antd: #b353e0;
--theme-purple-antd: #27c970;
--accent-gradient: var(--theme-purple);
--theme-antd: var(--theme-purple-antd);
}
Expand Down
2 changes: 1 addition & 1 deletion src/modules/Sidebar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const Sidebar: FC<{
return (
<div className="flex flex-col h-full bg-white">
<div className="p-4 mt-2 flex items-baseline justify-between">
<span className="text-3xl text-gradient font-[800]">ChatGPT</span>
<span className="text-3xl text-gradient font-[800]">NEXTera</span>
<a
href="https://github.com/GPTGenius/chatgpt-vercel"
target="_blank"
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const lang: Lang = import.meta.env.LANGUAGE || process.env.LANGUAGE || 'en';
const inVercel = !!process.env.VERCEL;
---

<Layout title="ChatGPT">
<Layout title="Building NEXTera">
<div id="container" class="container-default">
<Main lang={lang} inVercel={inVercel} client:only="react" />
</div>
Expand Down