1
0
Fork 0
sortable-recipes/app/components/recipe-preview.hbs
2019-12-22 12:05:00 -06:00

19 lines
715 B
Handlebars

<div class="max-w-sm w-full lg:max-w-full lg:flex">
<div class="h-48 lg:h-auto lg:w-48 flex-none">
<img src={{@meal.mealThumb}} alt="" class="h-full w-full object-cover">
</div>
<div class="border-r border-b border-l border-gray-400 lg:border-l-0 lg:border-t lg:border-gray-400 bg-white p-4 flex flex-col justify-between leading-normal">
<div class="mb-8">
<div class="text-gray-900 font-bold text-xl mb-2">
{{@meal.name}}
</div>
<p class="text-gray-700 text-base">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
</p>
</div>
<div>
<MealTag>{{@meal.category}}</MealTag>
<MealTag>{{@meal.area}}</MealTag>
</div>
</div>
</div>