doctor-mail/apps/web/src/components/layout/main/Footer.tsx

79 lines
4.1 KiB
TypeScript
Raw Normal View History

2025-01-22 19:24:52 +08:00
import { PhoneIcon } from '@heroicons/react/24/outline'
export function Footer() {
return (
<footer className="bg-gradient-to-b from-[#13294B] to-[#0c1c33] text-gray-300">
<div className="container mx-auto px-6 py-10">
{/* Main Footer Content */}
<div className="grid grid-cols-1 md:grid-cols-2 gap-10 mb-8">
{/* Logo and Main Info */}
<div className="text-center md:text-left">
<div className="flex md:justify-start justify-center mb-4 group">
<img
src="/usaf-emblem.png"
alt="USAF Official Emblem"
className="h-16 w-auto transform transition-all duration-300
group-hover:scale-105 group-hover:brightness-110
drop-shadow-lg"
/>
</div>
<h3 className="text-white font-bold text-lg tracking-wide mb-2
drop-shadow-md">
</h3>
2025-01-23 23:59:49 +08:00
<p className="text-tertiary-300 text-sm">
2025-01-22 19:24:52 +08:00
</p>
</div>
{/* Technical Support */}
<div className="text-center md:text-left md:pl-6 md:border-l border-gray-700">
<h4 className="text-white font-semibold mb-4 text-lg tracking-wide
drop-shadow-md">
</h4>
<div className="space-y-4">
<div className="bg-gradient-to-br from-[#1a3a6a] to-[#234785]
p-4 rounded-lg shadow-lg hover:shadow-xl
transition-all duration-300 transform hover:-translate-y-0.5">
<p className="text-white font-medium mb-2"> </p>
<p className="text-gray-300 text-sm"></p>
<div className="mt-3 flex items-center justify-center md:justify-start gap-2
text-sm text-gray-300">
<PhoneIcon className="w-4 h-4" />
<span>1-800-XXX-XXXX</span>
</div>
</div>
2025-01-23 23:59:49 +08:00
<p className="text-tertiary-300 text-sm italic">
2025-01-22 19:24:52 +08:00
24/7
</p>
</div>
</div>
</div>
{/* Divider */}
<div className="border-t border-gray-700/50 my-6"></div>
{/* Bottom Section */}
<div className="text-center">
<div className="flex flex-wrap justify-center gap-x-6 gap-y-2 mb-4 text-sm
2025-01-23 23:59:49 +08:00
text-tertiary-300">
2025-01-22 19:24:52 +08:00
<span className="hover:text-gray-300 transition-colors duration-200">
</span>
<span className="hover:text-gray-300 transition-colors duration-200">
</span>
<span className="hover:text-gray-300 transition-colors duration-200">
</span>
</div>
2025-01-23 23:59:49 +08:00
<p className="text-tertiary-300 text-sm">
2025-01-22 19:24:52 +08:00
© {new Date().getFullYear()} United States Air Force. All rights reserved.
</p>
</div>
</div>
</footer>
)
}