import Head from 'next/head'; import dynamic from 'next/dynamic'; import { Inter } from 'next/font/google'; // Import the HandDetector component with dynamic import to avoid SSR issues const HandDetector = dynamic(() => import('../components/HandDetector'), { ssr: false }); const inter = Inter({ subsets: ['latin'] }); const Header = () => { return (