export interface MenuItem {
label: string;
href: '/' | '/about' | '/rules';
}
export const BREAKPOINTS = {
tablet: 768,
} as const;
export const HEADER_HEIGHT = 60;
export const menuItems: readonly MenuItem[] = [
{ label: 'Voice Chat', href: '/' },
{ label: 'About Us', href: '/about' },
{ label: 'Rules', href: '/rules' },
] as const;