'use client'; import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'; import { Bug } from 'lucide-react'; import type { GameStore } from '@/lib/game/store'; interface GolemDebugProps { store: GameStore; } export function GolemDebug({ store }: GolemDebugProps) { return ( Golem Debug

Golem debugging tools will be added here.

); } GolemDebug.displayName = "GolemDebug";