Fortune-PlayLogic/components/betting/bet-services.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

29 lines
1000 B
TypeScript

import { BarChart2, PrinterIcon, Trophy } from "lucide-react"
const services = [
{ label: "Live Score", icon: BarChart2 },
{ label: "Results", icon: Trophy },
{ label: "Print Odds", icon: PrinterIcon },
]
export function BetServices() {
return (
<div className="flex items-center gap-0 bg-secondary rounded border border-border overflow-hidden text-[11px]">
<span className="px-3 py-2 font-bold uppercase text-muted-foreground text-[10px] tracking-wider border-r border-border">
Services
</span>
{services.map((service, i) => {
const Icon = service.icon
return (
<button
key={service.label}
className={`flex items-center gap-1.5 px-3 py-2 text-muted-foreground hover:text-primary hover:bg-muted transition-colors ${i < services.length - 1 ? "border-r border-border" : ""}`}
>
<Icon className="size-3" />
{service.label}
</button>
)
})}
</div>
)
}