2021-12-08 03:38:31 +00:00
|
|
|
import React from 'react';
|
2022-10-05 03:41:59 +00:00
|
|
|
import Link from 'next/link';
|
2021-12-08 03:38:31 +00:00
|
|
|
import Layout from '../components/layout';
|
2022-04-28 01:55:18 +00:00
|
|
|
import QuickLinks from '../components/quick-links';
|
2022-04-28 16:37:12 +00:00
|
|
|
import RecentNotes from '../components/recent-notes';
|
2022-04-28 01:55:18 +00:00
|
|
|
import RecentPosts from '../components/recent-posts';
|
2023-10-30 04:18:38 +00:00
|
|
|
import RootInfo from '../public/home.json';
|
2021-12-08 03:38:31 +00:00
|
|
|
|
2022-10-05 03:41:59 +00:00
|
|
|
function Nav() {
|
2023-10-30 04:18:38 +00:00
|
|
|
const nav = RootInfo;
|
2022-10-05 03:41:59 +00:00
|
|
|
return (
|
2024-02-13 23:01:07 +00:00
|
|
|
<div className='block'>
|
|
|
|
<h2>Navigation</h2>
|
2022-10-05 03:41:59 +00:00
|
|
|
{
|
2023-10-30 04:18:38 +00:00
|
|
|
Object.entries(nav).map(([slug, info], i) => {
|
|
|
|
return <Link key={i} href={slug} className='button green'>{info.title}</Link>
|
2022-10-05 03:41:59 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2023-10-30 04:18:38 +00:00
|
|
|
function HomePage() {
|
2021-12-08 03:38:31 +00:00
|
|
|
return (
|
2023-10-30 04:18:38 +00:00
|
|
|
<Layout>
|
2022-05-15 13:56:45 +00:00
|
|
|
<QuickLinks />
|
2023-10-30 04:18:38 +00:00
|
|
|
<RecentPosts />
|
2024-02-13 23:01:07 +00:00
|
|
|
<RecentNotes />
|
|
|
|
<Nav />
|
2021-12-08 03:38:31 +00:00
|
|
|
</Layout>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2023-09-20 04:25:34 +00:00
|
|
|
export default HomePage;
|