feat: implement dynamic viewport theme color management and update meta tag

This commit is contained in:
2025-06-20 03:18:18 +00:00
committed by GitHub
parent e4b239e230
commit 8650c3b438
4 changed files with 79 additions and 5 deletions

View File

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