import React from "react"; export function Footer({ locale = "zh-CN" }: { locale?: string }) { const text = { title: locale === "en" ? "LOG Official" : "LOG 官网", desc: locale === "en" ? "Showcase site for smart products and services." : "为用户提供智能产品与服务的展示站点。", legal: locale === "en" ? "Legal and terms (demo)" : "备案与条款等信息位(示例)", } as const; return ( ); }