import { Link } from "@/i18n/navigation"; import { getTranslations } from "next-intl/server"; function WeChatIcon({ size = 16 }: { size?: number }) { return ( ); } function LinkedInIcon({ size = 16 }: { size?: number }) { return ( ); } function XIcon({ size = 16 }: { size?: number }) { return ( ); } function MailIcon({ size = 16 }: { size?: number }) { return ( ); } const socialIcons = [ { icon: WeChatIcon, label: "WeChat" }, { icon: LinkedInIcon, label: "LinkedIn" }, { icon: XIcon, label: "X" }, { icon: MailIcon, label: "Email" }, ]; 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 ( ); }