"use client"; import { WarningsPanel } from "@/components/warnings/warnings-panel"; import { useI18n } from "@/lib/i18n"; export function WarningsPageContent() { const { t } = useI18n(); return (

{t("warnings.section")}

{t("warnings.title")}

{t("warnings.description")}

); }