25 lines
733 B
TypeScript
25 lines
733 B
TypeScript
import { type Lang, dict } from "@/lib/i18n";
|
|
|
|
export default function Footer({ lang = "ko" }: { lang?: Lang }) {
|
|
const t = dict(lang);
|
|
return (
|
|
<footer className="mt-6 text-center">
|
|
<p className="text-[10.5px] font-semibold text-white/75">
|
|
{t.footerNotOfficial}
|
|
</p>
|
|
<p className="mt-1 text-[10.5px] leading-relaxed text-white/60">
|
|
{t.footerDisc1}
|
|
</p>
|
|
|
|
<div className="mx-auto mt-3 max-w-[400px] space-y-1 text-[9.5px] leading-relaxed text-white/55">
|
|
<p>{t.footerDisc2}</p>
|
|
<p>{t.footerDisc3}</p>
|
|
</div>
|
|
|
|
<div className="mt-3 text-[10px] text-white/70">
|
|
© 2026 TriplePick · 운영 AIO2O · @triplepick_ai
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|