import { Link } from 'react-router-dom' import MoonDot from './MoonDot.jsx' const NAV = { website: [ { label: 'News', to: '/site/news' }, { label: 'Screenshots', to: '/site/screenshots' }, { label: 'Five on Friday', to: '/site/five-on-friday' }, { label: 'Newsletter', to: '/site/newsletter' }, { label: 'About', to: '/site/about' }, { label: 'Wiki', to: '/wiki' }, ], wiki: [ { label: 'Website', to: '/site' }, { label: 'New Player Guide', to: '/wiki/new-player-guide' }, { label: 'Maps & Atlas', to: '/wiki/maps-atlas' }, { label: 'Systems', to: '/wiki/systems' }, { label: 'Rules', to: '/wiki/rules' }, ], } export default function SiteHeader({ section = 'website' }) { const links = NAV[section] || NAV.website return (
UOMysticmoon
) }