Initial UI
This commit is contained in:
33
src/components/Footer.jsx
Normal file
33
src/components/Footer.jsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user