- {/* Theme Toggle */}
: }
+
+
{/* Mobile Navigation */}
diff --git a/src/components/ui/language-selector.tsx b/src/components/ui/language-selector.tsx
new file mode 100644
index 0000000..b69ed3e
--- /dev/null
+++ b/src/components/ui/language-selector.tsx
@@ -0,0 +1,17 @@
+'use client'
+
+import { Lang } from "@/i18n/locales";
+import Link from "next/link";
+import { useParams } from "next/navigation";
+
+
+export const LanguageSelector = () => {
+ const params = useParams<{ locale: Lang }>();
+
+ const lang = params?.locale || 'pl';
+ const hash = window?.location?.hash || '';
+ if (lang === 'pl') return (<>
+ 🇬🇧>);
+ if (lang === 'en') return (<>
+ 🇵🇱>);
+};