Add programming-resources; swi->generic Nintendo;

Remove custom html from markdown, clean-up UI (again)

Signed-off-by: Paul W. <lambdapaul@protonmail.com>
This commit is contained in:
2024-02-13 18:01:07 -05:00
parent 366f09864f
commit fece0bc86c
28 changed files with 392 additions and 304 deletions
+4 -3
View File
@@ -9,7 +9,8 @@ import RootInfo from '../public/home.json';
function Nav() {
const nav = RootInfo;
return (
<div className='block' style={{ textAlign: 'center' }}>
<div className='block'>
<h2>Navigation</h2>
{
Object.entries(nav).map(([slug, info], i) => {
return <Link key={i} href={slug} className='button green'>{info.title}</Link>
@@ -22,10 +23,10 @@ function Nav() {
function HomePage() {
return (
<Layout>
<Nav />
<QuickLinks />
<RecentNotes />
<RecentPosts />
<RecentNotes />
<Nav />
</Layout>
)
}