"use client" import { cn } from "@/lib/utils" import { Search, Heart, Clock, Star } from "lucide-react" export type GameCategory = string interface GamingSidebarProps { title: string subtitle?: string activeCategory: GameCategory onCategoryChange: (category: GameCategory) => void categories: { id: string name: string icon: any subtitle?: string hasChevron?: boolean }[] } export function GamingSidebar({ title, subtitle, activeCategory, onCategoryChange, categories }: GamingSidebarProps) { return ( ) }