diff --git a/app/(main)/layout.tsx b/app/(main)/layout.tsx index 0a8ffb2..afa5cd2 100644 --- a/app/(main)/layout.tsx +++ b/app/(main)/layout.tsx @@ -4,6 +4,7 @@ import { MainNav } from "@/components/layout/main-nav"; import { UserNav } from "@/components/layout/user-nav"; import { ThemeToggle } from "@/components/layout/theme-toggle"; import {useTranslations} from 'next-intl'; +import { LanguageToggle } from "@/components/layout/lang-toggle"; function MainLayout({ children }: { children: React.ReactNode }) { const t = useTranslations('home'); @@ -15,6 +16,7 @@ function MainLayout({ children }: { children: React.ReactNode }) {