14 lines
519 B
TypeScript
14 lines
519 B
TypeScript
export default function Footer() {
|
|
return (
|
|
<footer className="fixed bottom-0 left-0 w-full bg-background border-t py-4">
|
|
<div className="container mx-auto flex justify-between items-center text-sm text-primary">
|
|
<p>© 2025 CloudProxy 服务</p>
|
|
<div className="space-x-4">
|
|
<a href="#" aria-label="Twitter">Twitter</a>
|
|
<a href="#" aria-label="GitHub">GitHub</a>
|
|
<a href="#" aria-label="LinkedIn">LinkedIn</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
} |