chore: 恢复上传 components 目录到 GitHub

This commit is contained in:
卡若
2025-12-29 19:06:29 +08:00
parent 5dfc9b2898
commit 0bee46d58d
35 changed files with 3255 additions and 1 deletions

12
components/footer.tsx Normal file
View File

@@ -0,0 +1,12 @@
"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>
)
}