feat: implement swipe gesture controls for mobile audio player and enhance theme color handling

This commit is contained in:
2025-07-23 16:10:11 +00:00
committed by GitHub
parent abfe2bb3ef
commit abf29caacb
5 changed files with 63 additions and 19 deletions

View File

@@ -0,0 +1,8 @@
'use client';
import { useViewportThemeColor } from '@/hooks/use-viewport-theme-color';
export default function ThemeColorHandler() {
useViewportThemeColor();
return null;
}