'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; const navItems = [ { label: 'Docs', href: '/docs/grid-system' }, { label: 'Components', href: '/docs/components/article' }, { label: 'Themes', href: '/docs/theme' }, { label: 'Blocks', href: '/blocks' }, { label: 'Create', href: '/create' }, ]; export function Header() { const pathname = usePathname(); return (
NewspaperUI
); }