Spaces:
Running
Running
File size: 845 Bytes
f46336a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import { Search } from "lucide-react";
const Header = () => {
return (
<header className="w-full py-6 px-4 sm:px-6 lg:px-8 bg-white shadow-sm animate-fade-in">
<div className="max-w-7xl mx-auto">
<div className="flex items-center justify-between">
<h1 className="text-2xl font-bold text-primary">AI Deadlines</h1>
<div className="relative w-full max-w-md ml-4">
<input
type="text"
placeholder="Search conferences..."
className="w-full pl-10 pr-4 py-2 border border-neutral-light rounded-lg focus:outline-none focus:border-primary focus:ring-1 focus:ring-primary"
/>
<Search className="absolute left-3 top-2.5 h-5 w-5 text-neutral" />
</div>
</div>
</div>
</header>
);
};
export default Header;
|