From 058764806af5935c02cd935628d282b98a2d891e Mon Sep 17 00:00:00 2001 From: Aaron Yarborough Date: Sat, 9 Mar 2024 15:55:46 +0000 Subject: [PATCH] wip: add decap --- src/pages/recipes/index.js | 43 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 src/pages/recipes/index.js diff --git a/src/pages/recipes/index.js b/src/pages/recipes/index.js new file mode 100644 index 0000000..2a40594 --- /dev/null +++ b/src/pages/recipes/index.js @@ -0,0 +1,43 @@ +import Grid from '@/components/Grid/Grid' +import DefaultLayout from '@/layouts/DefaultLayout/DefaultLayout' +import React from 'react' + +// import fs from 'fs' +// import path from 'path' + +function Recipes ({ recipes }) { + return ( + +
+

Recipes

+ + {recipes.length && + recipes.map((recipe) => ( +
{recipe.name ?? 'unknown'}
+ ))} +
+
+
+ ) +} + +export default Recipes + +// export async function getStaticProps () { +// const recipeDirents = await fs.promises +// .readdir('./content/recipes', { +// recursive: false, +// withFileTypes: true +// }) + +// const recipes = [{ +// name: 'lol' +// }] +// for (const recipe of recipeDirents) { +// const p = path.join('./', recipe.path, recipe.name) +// } + +// return { +// props: { recipes } +// } +// }