Fortune-PlayLogic/components/betting/in-play-header.tsx
brooktewabe 612bb9386b feat: add hero banner, live events list, and sports navigation components
- 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.
2026-02-20 12:22:04 +03:00

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&apos;s Events</span>
</div>
</div>
)
}