import type { ComponentProps } from 'react'; import { Kanit } from 'next/font/google'; import Image from 'next/image'; import Link from 'next/link'; import { Coffee, Server, Wrench } from 'lucide-react'; import { Controls } from './controls'; const kanitSans = Kanit({ subsets: ['latin'], weight: ['400', '500', '600', '700'], }); export default function Header(headerProps: ComponentProps<'header'>) { return (
{/* Logo */} Convex Monorepo {/* Navigation */} {/* Controls (Theme + Auth) */}
); }