diff --git a/app/[locale]/page.tsx b/app/[locale]/page.tsx
index 6bd9bc1..2d57702 100644
--- a/app/[locale]/page.tsx
+++ b/app/[locale]/page.tsx
@@ -17,8 +17,8 @@ export default function HomePage() {
return (
-
-
+ {/*
+
*/}
diff --git a/components/ui/language-switcher.tsx b/components/ui/language-switcher.tsx
index 600d6ba..4135755 100644
--- a/components/ui/language-switcher.tsx
+++ b/components/ui/language-switcher.tsx
@@ -6,7 +6,7 @@ import { useEffect, useTransition } from 'react'
import { Globe } from 'lucide-react'
export function LanguageSwitcher() {
- console.log('home-switcher 2==========================>')
+ console.log('LanguageSwitcher ==========================>')
const router = useRouter()
const pathname = usePathname()
const [isPending, startTransition] = useTransition()
diff --git a/components/utility/home-redirector.tsx b/components/utility/home-redirector.tsx
index 09aa10a..79cf47e 100644
--- a/components/utility/home-redirector.tsx
+++ b/components/utility/home-redirector.tsx
@@ -9,7 +9,7 @@ const isValidLocale = (locale: string): locale is (typeof i18nConfig.locales)[nu
}
export default function HomeRedirector() {
- console.log('home-redirecting 1==========================>')
+ console.log('home-redirecting ==========================>')
const router = useRouter()
useEffect(() => {
diff --git a/middleware.ts b/middleware.ts
index 44d0c76..6a86e4b 100644
--- a/middleware.ts
+++ b/middleware.ts
@@ -4,7 +4,7 @@ import { NextResponse, type NextRequest } from "next/server"
import i18nConfig from "./i18nConfig"
export async function middleware(request: NextRequest) {
- console.log('middleware 3==========================>')
+ console.log('middleware ==========================>')
const { pathname } = request.nextUrl
const preferredLanguage = request.cookies.get("preferred-language")?.value