import React from 'react'; import Link from 'next/link'; import QuickLinks from './components/quick-links'; import RecentNotes from './components/recent-notes'; import RecentPosts from './components/recent-posts'; import RootInfo from '../../public/home.json'; function Nav() { const nav = Object.entries(RootInfo); return (

Navigation

{ nav.map(([slug, info]) => { return {info.title} }) }
) } function HomePage() { return ( <>