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">
|
<div className="flex items-center gap-8">
|
||||||
<Avatar className="size-32">
|
<Avatar className="size-32">
|
||||||
<AvatarImage
|
<AvatarImage
|
||||||
className="rounded-full border-2 border-gray-200"
|
className="rounded-full border-4 border-gray-200"
|
||||||
src="/logo.png"
|
src="/logo.png"
|
||||||
alt="Avatar"
|
alt="Avatar"
|
||||||
/>
|
/>
|
||||||
|
@ -52,7 +52,7 @@ export default async function LocaleLayout({
|
|||||||
|
|
||||||
<Toaster richColors position="top-right" offset={64} />
|
<Toaster richColors position="top-right" offset={64} />
|
||||||
|
|
||||||
<TailwindIndicator />
|
{/* <TailwindIndicator /> */}
|
||||||
</Providers>
|
</Providers>
|
||||||
</NextIntlClientProvider>
|
</NextIntlClientProvider>
|
||||||
</body>
|
</body>
|
||||||
|
@ -9,6 +9,8 @@ import { LocaleLink } from '@/i18n/navigation';
|
|||||||
import { cn } from '@/lib/utils';
|
import { cn } from '@/lib/utils';
|
||||||
import { useTranslations } from 'next-intl';
|
import { useTranslations } from 'next-intl';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import LocaleSwitcher from './locale-switcher';
|
||||||
|
import { ThemeSelector } from './theme-selector';
|
||||||
|
|
||||||
export function Footer({ className }: React.HTMLAttributes<HTMLElement>) {
|
export function Footer({ className }: React.HTMLAttributes<HTMLElement>) {
|
||||||
const t = useTranslations();
|
const t = useTranslations();
|
||||||
@ -98,7 +100,10 @@ export function Footer({ className }: React.HTMLAttributes<HTMLElement>) {
|
|||||||
Reserved.
|
Reserved.
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
<div className="flex items-center gap-x-4">
|
||||||
|
<ThemeSelector />
|
||||||
<ThemeSwitcherHorizontal />
|
<ThemeSwitcherHorizontal />
|
||||||
|
</div>
|
||||||
</Container>
|
</Container>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
@ -33,8 +33,6 @@ interface NavBarProps {
|
|||||||
const customNavigationMenuTriggerStyle = cn(
|
const customNavigationMenuTriggerStyle = cn(
|
||||||
navigationMenuTriggerStyle(),
|
navigationMenuTriggerStyle(),
|
||||||
'relative bg-transparent text-muted-foreground cursor-pointer',
|
'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',
|
'hover:bg-accent hover:text-accent-foreground',
|
||||||
'focus:bg-accent focus:text-accent-foreground',
|
'focus:bg-accent focus:text-accent-foreground',
|
||||||
'data-active:font-semibold data-active:bg-transparent data-active:text-foreground',
|
'data-active:font-semibold data-active:bg-transparent data-active:text-foreground',
|
||||||
|