Initial release v1.0.0

This commit is contained in:
Kevin O'Neill
2025-12-25 18:58:06 -06:00
commit 021aec7a63
439 changed files with 116588 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
"use client";
import { ReactNode } from "react";
import { usePlayerMode } from "@/hooks/usePlayerMode";
export function PlayerModeWrapper({ children }: { children: ReactNode }) {
// This component exists solely to call the usePlayerMode hook
// which must be in a client component
usePlayerMode();
return <>{children}</>;
}