import { useTranslations } from "next-intl" import Image from "next/image" import { Link } from "../../Design/Link/Link.tsx" import { Locales } from "./Locales/Locales.tsx" import { SwitchTheme } from "./SwitchTheme.tsx" export interface HeaderProps {} export const Header: React.FC = () => { const t = useTranslations() return (

{`${t("meta.title")} {t("meta.title")}

Blog
) }