import { Link } from "@/i18n/navigation"; import { getTranslations } from "next-intl/server"; import FooterSocial from "./FooterSocial"; export default async function Footer() { const t = await getTranslations("footer"); const th = await getTranslations("header"); const pageLinks = [ { label: th("home"), href: "/" as const }, { label: th("tech"), href: "/tech" as const }, { label: th("solutions"), href: "/solutions" as const }, { label: th("about"), href: "/about" as const }, ]; const businessLinks = [ { label: t("bizDeSpace"), href: "#" as const }, { label: t("bizRWA"), href: "#" as const }, { label: t("bizQuant"), href: "#" as const }, ]; return ( ); }