"use client"; import Link from "next/link"; import { useI18n } from "../components/I18nProvider"; const highlights = [ { keyTitle: "highlightQualityTitle", keyBody: "highlightQualityBody" }, { keyTitle: "highlightLocalTitle", keyBody: "highlightLocalBody" }, { keyTitle: "highlightApiTitle", keyBody: "highlightApiBody" }, ]; export default function AboutPage() { const { t } = useI18n(); const siteUrl = process.env.NEXT_PUBLIC_SITE_URL || "http://localhost:3000"; const apiBase = process.env.NEXT_PUBLIC_API_BASE || "http://localhost:3000/api"; const appEnv = process.env.APP_ENV || "local"; const appVersion = process.env.NEXT_PUBLIC_VERSION || "dev"; return (
{t("homeCrumb")} /{" "} {t("aboutTitle")}

{t("aboutTitle")}

{t("aboutLead")}

{highlights.map((item) => (

{t(item.keyTitle as any)}

{t(item.keyBody as any)}

))}

{t("runtimeConfigTitle")}

{t("runtimeConfigLead")}

{t("runtimeAppEnv")} {appEnv} {t("runtimeSiteUrl")} {siteUrl} {t("runtimeApiBase")} {apiBase} Version {appVersion}
{t("ctaHealth")}
); }