13 lines
388 B
TypeScript
13 lines
388 B
TypeScript
|
|
"use client"
|
||
|
|
|
||
|
|
export function Footer() {
|
||
|
|
return (
|
||
|
|
<footer className="py-6 px-4 border-t border-gray-800 pb-24">
|
||
|
|
<div className="max-w-xs mx-auto text-center">
|
||
|
|
<p className="text-white text-sm font-medium mb-1">一场SOUL的创业实验场</p>
|
||
|
|
<p className="text-gray-500 text-xs">© 2025 卡若 · 每日直播 06:00-09:00</p>
|
||
|
|
</div>
|
||
|
|
</footer>
|
||
|
|
)
|
||
|
|
}
|