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.
@ -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
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 82 KiB After Width: | Height: | Size: 69 KiB |
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 618 B After Width: | Height: | Size: 658 B |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
BIN
public/logo.png
Executable file → Normal file
Before Width: | Height: | Size: 82 KiB After Width: | Height: | Size: 233 KiB |
BIN
public/mksaas.png
Executable file → Normal file
Before Width: | Height: | Size: 82 KiB After Width: | Height: | Size: 77 KiB |
Before Width: | Height: | Size: 391 B After Width: | Height: | Size: 391 B |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 128 B After Width: | Height: | Size: 128 B |
Before Width: | Height: | Size: 385 B After Width: | Height: | Size: 385 B |
@ -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"
|
||||
/>
|
||||
|
@ -52,7 +52,7 @@ export default async function LocaleLayout({
|
||||
|
||||
<Toaster richColors position="top-right" offset={64} />
|
||||
|
||||
<TailwindIndicator />
|
||||
{/* <TailwindIndicator /> */}
|
||||
</Providers>
|
||||
</NextIntlClientProvider>
|
||||
</body>
|
||||
|
@ -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>
|
||||
|
@ -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',
|
||||
|