feat(page): home page layout

This commit is contained in:
Corentin Thomasset
2022-04-05 23:23:08 +02:00
parent 3db4f91c27
commit 57fd14a199
4 changed files with 65 additions and 3 deletions

View File

@@ -20,3 +20,4 @@ export const toolsByCategory: ToolCategory[] = [
];
export const tools = toolsByCategory.flatMap(({ components }) => components);
export const toolsWithCategory = toolsByCategory.flatMap(({ components, name }) => components.map((tool) => ({ category: name, ...tool })));