- Updated SearchBar component to use max-width and height utilities for better responsiveness. - Adjusted ArtistsPage layout to include container for consistent padding and spacing. - Modified BestSeller and NewRelease components to use grid layout for better item arrangement. - Enhanced Frame component layout and styling for improved visual hierarchy. - Refined HomeBanner component for better spacing and text sizing. - Improved Navbar component with mobile menu functionality and responsive design. - Updated RecentDesign and SideNav components for better mobile experience and layout. - Enhanced Sidebar component with mobile menu toggle and improved navigation links. - Refactored marketplace Navbar to include mobile menu and improved layout for icons and buttons.
21 lines
911 B
TypeScript
21 lines
911 B
TypeScript
import { Input } from '@/components/ui/input';
|
|
import { Search } from 'lucide-react';
|
|
|
|
export default function SearchBar() {
|
|
return (
|
|
<div className="flex justify-center w-full my-6 px-4">
|
|
<div className="flex items-center bg-white rounded-xl shadow-md px-4 w-full max-w-[613px] h-[50px]">
|
|
<select className="bg-transparent outline-none text-gray-700 font-medium pr-2 h-full">
|
|
<option className="text-[14px] font-400">All</option>
|
|
</select>
|
|
<span className="mx-2 text-gray-300">|</span>
|
|
<Search className="w-5 h-5 text-gray-400 mr-2" />
|
|
<Input
|
|
type="text"
|
|
className="flex-1 bg-transparent outline-none text-gray-700 placeholder-gray-400 border-0 shadow-none focus-visible:ring-0 focus-visible:ring-offset-0 h-full"
|
|
placeholder="Search images, videos, fonts, graphics and more"
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|