'use client'; import { useState } from 'react'; export function ThemeToggle() { const [dark, setDark] = useState(false); return ( ); }