"use client"; import { memo } from "react"; import { useTranslation } from "../contexts/MessagesContext"; import Link from "next/link"; import Logo from "./Logo"; import Separator from "./Separator"; import { getAssetPath, ASSETS } from "../../lib/assetUtils"; const Footer = memo(() => { const t = useTranslation("footer"); // Schema markup for organization information const schemaData = { "@context": "https://schema.org", "@type": "Organization", name: t("organization.name"), email: t("organization.email"), url: t("organization.url"), sameAs: [ t("social.bluesky.url"), t("social.gitlab.url"), ], }; return ( <>