turbopack and app router; very annoying to work with!

This commit is contained in:
2025-05-31 22:06:24 -04:00
parent 657f4b1e41
commit f477ba21ea
35 changed files with 125 additions and 310 deletions
+33
View File
@@ -0,0 +1,33 @@
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 (
<div className='block'>
<h2>Navigation</h2>
{
nav.map(([slug, info]) => {
return <Link key={slug} href={slug} className='button green'>{info.title}</Link>
})
}
</div>
)
}
function HomePage() {
return (
<>
<QuickLinks />
<RecentPosts />
<RecentNotes />
<Nav />
</>
)
}
export default HomePage;