diff --git a/src/components/Header.tsx b/src/components/Header.tsx index 7300304..74e47fe 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -1,10 +1,12 @@ import Image from 'next/image'; import { useTranslations } from 'next-intl'; +import { Link } from '@/i18n/routing'; import { LanguageSwitcher } from './LanguageSwitcher'; export function Header() { const t = useTranslations('header'); const c = useTranslations('common'); + const cu = useTranslations('customer'); return (
@@ -28,7 +30,15 @@ export function Header() {
- +
+ + {cu('navTitle')} + + +
);