Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node ./scripts/actionlint.mjs .github/workflows
npm run web:build
3 changes: 3 additions & 0 deletions app/(tabs)/tools/_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ export default function ToolsLayout() {
<Stack.Screen name="index" options={{ title: 'Tools' }} />
<Stack.Screen name="blood-pressure" options={{ title: 'Blood Pressure' }} />
<Stack.Screen name="feed" options={{ title: 'Feed' }} />
<Stack.Screen name="recipes/index" options={{ title: 'Recipes' }} />
<Stack.Screen name="recipes/create" options={{ title: 'Create Food' }} />
<Stack.Screen name="recipes/edit" options={{ title: 'Edit Food' }} />
<Stack.Screen name="weight" options={{ title: 'Weight' }} />
</Stack>
);
Expand Down
8 changes: 8 additions & 0 deletions app/(tabs)/tools/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ const toolCards = [
accentKey: 'toolCardFeed',
route: '/tools/feed',
},
{
id: 'recipes',
title: 'Recipes',
description: 'Save your custom foods for quick logging.',
icon: 'book.closed.fill',
accentKey: 'toolCardRecipes',
route: '/tools/recipes',
},
{
id: 'weight',
title: 'Weight',
Expand Down
Loading