import { NavLink, Outlet, useLocation } from 'react-router-dom'; import { MatrixRain } from './matrix-rain'; import { AuthorCredit } from './author-credit'; import { cn } from '@/lib/utils'; const NAV = [ { to: '/', label: '~/home', end: true }, { to: '/about', label: '~/about' }, { to: '/contact', label: '~/contact' }, ]; export function Layout() { const { pathname } = useLocation(); return (