import Image from "next/image"; import Link from "next/link"; import React from "react"; import { useTranslations } from "next-intl"; import { getLocale } from "next-intl/server"; export const PageFooter: React.FC = async () => { const t = useTranslations("PageFooter"); const locale = await getLocale(); return(
); }