feat(student): added footer and changed css in job client

This commit is contained in:
Unchanted
2025-09-23 13:59:48 +05:30
parent afedb8df6c
commit 57211acb32
3 changed files with 83 additions and 82 deletions

View File

@@ -0,0 +1,23 @@
export default function Footer() {
return (
<footer className="bg-white border-t border-gray-200 py-8 mt-auto">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="text-center">
{/* Main branding */}
<p className="text-gray-600 text-sm font-medium mb-2">
Developed and maintained by SwDC KJSSE
</p>
{/* Developer names */}
<div className="flex flex-wrap justify-center items-center gap-2 text-xs text-gray-500">
<span>Om Dwivedi</span>
<span className="text-gray-300"></span>
<span>Anushrut Pandit</span>
<span className="text-gray-300"></span>
<span>Om Lanke</span>
</div>
</div>
</div>
</footer>
);
}