9 lines
258 B
TypeScript
9 lines
258 B
TypeScript
export default function Footer() {
|
||
return (
|
||
<footer className="mt-12 text-center text-sm text-text-tertiary">
|
||
<p>如需加入或了解详情,请直接联系我</p>
|
||
<p className="mt-1">最后更新:2026 年 3 月</p>
|
||
</footer>
|
||
)
|
||
}
|