Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 2x 18x | export const Footer = () => {
return (
<footer className="bg-background border-t border-border px-6 py-4">
<div className="flex items-center justify-between">
<div className="text-sm text-muted-foreground">
© 2024 CoinBase Dashboard. All rights reserved.
</div>
<div className="flex items-center space-x-4 text-sm text-muted-foreground">
<button className="hover:text-foreground transition-colors">
Privacy Policy
</button>
<button className="hover:text-foreground transition-colors">
Terms of Service
</button>
<button className="hover:text-foreground transition-colors">
Support
</button>
</div>
</div>
</footer>
);
};
|