feat: added some stuff

This commit is contained in:
Nick 2024-12-01 02:56:13 -06:00
parent f73dab4579
commit 36f9c89214
21 changed files with 573 additions and 155 deletions

View file

@ -0,0 +1,21 @@
module Products.NutriDex.NutriDex exposing (..)
import Products.Types exposing (..)
productNutriDex : NutriDex
productNutriDex =
{ nutriDexTitle = "The NutriDex"
, nutriDexFeatures =
[ { feature = "feature"
}
]
, nutriDexReference =
[ { reference = "reference"
, author = "author"
, year = "year"
, title = "title"
, link = "link"
}
]
}