'use client'; import Image from 'next/image'; import Link from 'next/link'; import { useTVMode } from '@/components/providers'; import { cn } from '@/lib/utils'; import { type ComponentProps } from 'react'; import { Controls } from './controls'; const Header = (headerProps: ComponentProps<'header'>) => { const { tvMode } = useTVMode(); if (tvMode) return (
); return (
{/* Left spacer for perfect centering */}
{/* Centered logo and title */}
Tech Tracker Logo

Tech Tracker

{/* Right-aligned controls */}
); }; export default Header;