"use client"
import Image from "next/image"
import {
ArrowLeft,
Play,
ChevronDown,
Clock,
MapPin,
Maximize2,
Users,
Eye,
Share2,
Heart,
MoreHorizontal,
} from "lucide-react"
import { Button } from "@/components/ui/button"
import { useState } from "react"
export default function ZoneVenuePage() {
const [activeTab, setActiveTab] = useState("highlights")
return (
{/* Header with premium background */}
{/* Header Controls */}
{/* Venue Info Card with glassmorphism */}
RONIN黄金篮球馆
杭州拱墅区黑马路124号(肯德基对面)
{/* Main Video Player with enhanced styling */}
{/* Navigation Tabs with enhanced styling */}
{/* Court and Time Selection with premium styling */}
{/* Video Grid with enhanced styling */}
{/* Live Video */}
{/* Other Videos */}
{[1, 2, 3, 4, 5].map((index) => (
))}
{/* Bottom Notice with enhanced styling */}
{/* Bottom Actions - Fixed with glassmorphism */}
{/* Bottom Spacing for Fixed Actions */}
)
}