import { useTranslations } from "next-intl" import Image from "next/image" export interface AboutLogoProps {} export const AboutLogo: React.FC = () => { const t = useTranslations() return (
{t("meta.title")}
) }