two-cloudwebsite/components/Footer.tsx
2025-07-16 17:42:25 +08:00

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>&copy; 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>
);
}