7 lines
197 B
TypeScript
7 lines
197 B
TypeScript
export function SiteFooter() {
|
|
return (
|
|
<footer className="text-center py-4 text-sm text-gray-500">
|
|
<p>© 2024 编程爱好者网址导航. All rights reserved.</p>
|
|
</footer>
|
|
)
|
|
}
|