woedii/app/marketplace/artists/page.tsx
iamkiddy 81e56ef6a0 Refactor UI components for improved responsiveness and styling consistency
- 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.
2025-04-29 13:54:37 +00:00

18 lines
587 B
TypeScript

import QuickActions from './_components/Quick_Actions';
import ArtistContent from './_components/Artist_Content';
import SearchBar from './_components/SearchBar';
export default function ArtistsPage() {
return (
<div className="relative bg-[#F3F3F3] min-h-screen">
<div className="container mx-auto px-4 sm:px-6 lg:px-8">
<QuickActions />
{/* Overlapping SearchBar */}
<div className="w-full flex justify-center relative z-30 -mt-8 sm:-mt-10 md:-mt-12">
<SearchBar />
</div>
<ArtistContent />
</div>
</div>
);
}