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,15 @@
"use client";
import { useKeyboardShortcuts } from "@/hooks/useKeyboardShortcuts";
import { useMediaSession } from "@/hooks/useMediaSession";
/**
* Invisible component that registers keyboard shortcuts and Media Session API
* Should be placed at the root level of the app
*/
export function MediaControlsHandler() {
useKeyboardShortcuts();
useMediaSession();
return null; // This component doesn't render anything
}