import Link from 'next/link'; import { BlogTitle } from '@/components/blog-title'; import { cn } from '@/lib/utils'; import { allPages } from '../.contentlayer/generated'; type NavigationBarProps = { className?: string; }; export function NavigationBar({ className }: NavigationBarProps) { return ( ); }