Initial UI

This commit is contained in:
2026-03-01 13:17:28 +05:30
commit 5e58ebe650
24 changed files with 4275 additions and 0 deletions

33
src/components/Footer.jsx Normal file
View File

@@ -0,0 +1,33 @@
export default function Footer() {
return (
<div className="mt-16 text-center
bg-black/60 backdrop-blur-xl
py-8 border-t border-white/10">
<p className="text-lg font-semibold">
Login for Admin Only
</p>
<div className="flex justify-center gap-4 mt-4">
<input placeholder="Card No"
className="px-4 py-2 rounded bg-black border border-white/20" />
<input placeholder="PIN No"
className="px-4 py-2 rounded bg-black border border-white/20" />
<button className="px-6 py-2
bg-blue-600 rounded hover:bg-blue-700">
Login
</button>
</div>
</div>
);
}