woedii/app/marketplace/artists/page.tsx

16 lines
491 B
TypeScript
Raw Normal View History

2025-04-28 00:47:36 +00:00
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]">
<QuickActions />
{/* Overlapping SearchBar */}
<div className="w-full flex justify-center relative z-30" style={{ marginTop: '-40px' }}>
<SearchBar />
</div>
<ArtistContent />
</div>
);
}