diff --git a/src/app/[lang]/Menu.tsx b/src/app/[lang]/Menu.tsx index 55e3f0e..f993928 100644 --- a/src/app/[lang]/Menu.tsx +++ b/src/app/[lang]/Menu.tsx @@ -38,14 +38,14 @@ function Menu({ menu }: MenuProps) { href={href} className={cn( 'relative block p-3 text-xl leading-none no-underline', - 'text-zinc-700 transition-colors hover:text-primary-500 dark:text-zinc-300 dark:hover:text-primary-500', + 'text-zinc-700 hover:text-primary-500 dark:text-zinc-300 dark:hover:text-primary-500', activeLinkIndex === index && 'fluorescent-text text-primary-500 dark:text-primary-500' )} > {text} {activeLinkIndex === index && ( - + )} diff --git a/src/app/[lang]/posts/[postId]/page.tsx b/src/app/[lang]/posts/[postId]/page.tsx index f94ee8d..164ff32 100644 --- a/src/app/[lang]/posts/[postId]/page.tsx +++ b/src/app/[lang]/posts/[postId]/page.tsx @@ -48,7 +48,7 @@ async function PostPage({ params: { postId } }: PostParams) {