- Implemented HeroBanner component for image carousel with navigation arrows and indicators. - Created LiveEventsList component to display live events with odds and match details. - Added SportsNav component for sport category navigation with icons. - Introduced TopMatches component to showcase highlighted matches with odds. - Updated InPlayHeader and QuickFilterBar for improved UI and functionality. - Enhanced ReloadTicket and SearchEvent components for better user experience. - Refactored SportsSidebar to include popular leagues and quick filter options. - Added new sport-home layout to integrate various betting components.
12 lines
410 B
TypeScript
12 lines
410 B
TypeScript
export function InPlayHeader() {
|
|
return (
|
|
<div className="flex items-center justify-between border-b border-border pb-2">
|
|
<div className="flex items-center gap-2">
|
|
<h1 className="text-sm font-black uppercase tracking-wide text-foreground">
|
|
IN-PLAY
|
|
</h1>
|
|
<span className="text-[10px] text-muted-foreground">/ Today's Events</span>
|
|
</div>
|
|
</div>
|
|
)
|
|
} |