21 lines
738 B
TypeScript
21 lines
738 B
TypeScript
export function Footer() {
|
|
return (
|
|
<footer className="py-8 border-t border-gray-100">
|
|
<div className="container px-4 md:px-6">
|
|
<div className="flex flex-col md:flex-row justify-between items-center gap-4">
|
|
<p className="text-sm text-gray-500">
|
|
© 2024 DentalMatch. All rights reserved.
|
|
</p>
|
|
<div className="flex gap-6">
|
|
<a href="#" className="text-sm text-gray-500 hover:text-gray-900 transition-colors">
|
|
Privacy Policy
|
|
</a>
|
|
<a href="#" className="text-sm text-gray-500 hover:text-gray-900 transition-colors">
|
|
Terms & Conditions
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
} |