diff --git a/ISSUES.md b/ISSUES.md index fab48b4..20fff89 100644 --- a/ISSUES.md +++ b/ISSUES.md @@ -1 +1 @@ -1. Doc Search in Chinese not working \ No newline at end of file +1. When navigate to docs and navigate back to homepage, the page layout may shift when click the action buttons on the navbar \ No newline at end of file diff --git a/public/android-chrome-192x192.png b/public/android-chrome-192x192.png index 2aa6458..394994d 100755 Binary files a/public/android-chrome-192x192.png and b/public/android-chrome-192x192.png differ diff --git a/public/android-chrome-512x512.png b/public/android-chrome-512x512.png index 70bbffc..51c6093 100755 Binary files a/public/android-chrome-512x512.png and b/public/android-chrome-512x512.png differ diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png index 3cdee20..bfe642c 100755 Binary files a/public/apple-touch-icon.png and b/public/apple-touch-icon.png differ diff --git a/public/favicon-16x16.png b/public/favicon-16x16.png index 82785c3..2277bbc 100755 Binary files a/public/favicon-16x16.png and b/public/favicon-16x16.png differ diff --git a/public/favicon-32x32.png b/public/favicon-32x32.png index da097e3..0808bf6 100755 Binary files a/public/favicon-32x32.png and b/public/favicon-32x32.png differ diff --git a/public/favicon.ico b/public/favicon.ico index 793fd20..d9c2cff 100755 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/public/logo.png b/public/logo.png old mode 100755 new mode 100644 index 70bbffc..8a5d43f Binary files a/public/logo.png and b/public/logo.png differ diff --git a/public/mksaas.png b/public/mksaas.png old mode 100755 new mode 100644 index 70bbffc..8b872d3 Binary files a/public/mksaas.png and b/public/mksaas.png differ diff --git a/public/file.svg b/public/svg/file.svg similarity index 100% rename from public/file.svg rename to public/svg/file.svg diff --git a/public/globe.svg b/public/svg/globe.svg similarity index 100% rename from public/globe.svg rename to public/svg/globe.svg diff --git a/public/next.svg b/public/svg/next.svg similarity index 100% rename from public/next.svg rename to public/svg/next.svg diff --git a/public/placeholder.svg b/public/svg/placeholder.svg similarity index 100% rename from public/placeholder.svg rename to public/svg/placeholder.svg diff --git a/public/vercel.svg b/public/svg/vercel.svg similarity index 100% rename from public/vercel.svg rename to public/svg/vercel.svg diff --git a/public/window.svg b/public/svg/window.svg similarity index 100% rename from public/window.svg rename to public/svg/window.svg diff --git a/src/app/[locale]/(marketing)/(pages)/about/page.tsx b/src/app/[locale]/(marketing)/(pages)/about/page.tsx index 5d99b11..a933e7d 100644 --- a/src/app/[locale]/(marketing)/(pages)/about/page.tsx +++ b/src/app/[locale]/(marketing)/(pages)/about/page.tsx @@ -40,7 +40,7 @@ export default async function AboutPage() {
diff --git a/src/app/[locale]/layout.tsx b/src/app/[locale]/layout.tsx index 76176f8..a894377 100644 --- a/src/app/[locale]/layout.tsx +++ b/src/app/[locale]/layout.tsx @@ -52,7 +52,7 @@ export default async function LocaleLayout({ - + {/* */} diff --git a/src/components/layout/footer.tsx b/src/components/layout/footer.tsx index 023f77e..16e614f 100644 --- a/src/components/layout/footer.tsx +++ b/src/components/layout/footer.tsx @@ -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) { const t = useTranslations(); @@ -98,7 +100,10 @@ export function Footer({ className }: React.HTMLAttributes) { Reserved. - +
+ + +
diff --git a/src/components/layout/navbar.tsx b/src/components/layout/navbar.tsx index 350883c..4f9bd34 100644 --- a/src/components/layout/navbar.tsx +++ b/src/components/layout/navbar.tsx @@ -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',