From 6eb40ed167e5d9e5f29ca45bef78fb0cca10a4f4 Mon Sep 17 00:00:00 2001 From: SteffEn Henkelmann <40469614+sthenkel23@users.noreply.github.com> Date: Sun, 28 Jan 2024 11:16:19 +0100 Subject: [PATCH 1/3] Update index.astro --- src/pages/index.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/index.astro b/src/pages/index.astro index 71cf2a9d..8b4f7645 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -11,7 +11,7 @@ const lang: Lang = import.meta.env.LANGUAGE || process.env.LANGUAGE || 'en'; const inVercel = !!process.env.VERCEL; --- - +
From 3721801a29278b2c52e77450b49dd03b525c2ee7 Mon Sep 17 00:00:00 2001 From: SteffEn Henkelmann <40469614+sthenkel23@users.noreply.github.com> Date: Sun, 28 Jan 2024 11:38:59 +0100 Subject: [PATCH 2/3] fix: updated title --- README.md | 2 +- src/modules/Sidebar/index.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 235776c3..dc7b12ee 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![](assets/preview.png) -

ChatGPT-Vercel

+

NEXTera-Vercel

diff --git a/src/modules/Sidebar/index.tsx b/src/modules/Sidebar/index.tsx index 20579f3b..d00a3f5b 100644 --- a/src/modules/Sidebar/index.tsx +++ b/src/modules/Sidebar/index.tsx @@ -81,7 +81,7 @@ const Sidebar: FC<{ return (

- ChatGPT + NEXTera Date: Sun, 28 Jan 2024 11:54:44 +0100 Subject: [PATCH 3/3] fix: changed color --- src/layouts/Layout.astro | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index c862e0b7..cd739648 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -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); }