feat: update logo & favicon images

- Updated ISSUES.md to reflect a new issue regarding page layout shifting when navigating between docs and the homepage.
- Changed permissions for several image files to ensure proper access and usage.
- Added new SVG files for enhanced iconography in the project.
This commit is contained in:
javayhu 2025-03-29 21:20:45 +08:00
parent 8374ec9564
commit 42c2460718
19 changed files with 9 additions and 6 deletions

View File

@ -1 +1 @@
1. Doc Search in Chinese not working
1. When navigate to docs and navigate back to homepage, the page layout may shift when click the action buttons on the navbar

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 82 KiB

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 618 B

After

Width:  |  Height:  |  Size: 658 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

BIN
public/logo.png Executable file → Normal file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 82 KiB

After

Width:  |  Height:  |  Size: 233 KiB

BIN
public/mksaas.png Executable file → Normal file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 82 KiB

After

Width:  |  Height:  |  Size: 77 KiB

View File

Before

Width:  |  Height:  |  Size: 391 B

After

Width:  |  Height:  |  Size: 391 B

View File

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

Before

Width:  |  Height:  |  Size: 128 B

After

Width:  |  Height:  |  Size: 128 B

View File

Before

Width:  |  Height:  |  Size: 385 B

After

Width:  |  Height:  |  Size: 385 B

View File

@ -40,7 +40,7 @@ export default async function AboutPage() {
<div className="flex items-center gap-8">
<Avatar className="size-32">
<AvatarImage
className="rounded-full border-2 border-gray-200"
className="rounded-full border-4 border-gray-200"
src="/logo.png"
alt="Avatar"
/>

View File

@ -52,7 +52,7 @@ export default async function LocaleLayout({
<Toaster richColors position="top-right" offset={64} />
<TailwindIndicator />
{/* <TailwindIndicator /> */}
</Providers>
</NextIntlClientProvider>
</body>

View File

@ -9,6 +9,8 @@ import { LocaleLink } from '@/i18n/navigation';
import { cn } from '@/lib/utils';
import { useTranslations } from 'next-intl';
import React from 'react';
import LocaleSwitcher from './locale-switcher';
import { ThemeSelector } from './theme-selector';
export function Footer({ className }: React.HTMLAttributes<HTMLElement>) {
const t = useTranslations();
@ -98,7 +100,10 @@ export function Footer({ className }: React.HTMLAttributes<HTMLElement>) {
Reserved.
</span>
<ThemeSwitcherHorizontal />
<div className="flex items-center gap-x-4">
<ThemeSelector />
<ThemeSwitcherHorizontal />
</div>
</Container>
</div>
</footer>

View File

@ -33,8 +33,6 @@ interface NavBarProps {
const customNavigationMenuTriggerStyle = cn(
navigationMenuTriggerStyle(),
'relative bg-transparent text-muted-foreground cursor-pointer',
// 'hover:bg-transparent hover:text-foreground',
// 'focus:bg-transparent focus:text-foreground',
'hover:bg-accent hover:text-accent-foreground',
'focus:bg-accent focus:text-accent-foreground',
'data-active:font-semibold data-active:bg-transparent data-active:text-foreground',