1
0
Fork 0
sortable-recipes/ember-ui/app/templates/index.hbs
Ava Gaiety Wroten 84a1e7d972 Backend
2019-12-24 16:52:05 -06:00

17 lines
491 B
Handlebars

{{#if this.userHasMeals}}
<h1 class="text-5xl -mt-4 text-teal-500 font-hairline">
Great, you have meals!
</h1>
<p class="text-gray-700 text-base">
You can see more details of any meal by clicking on them. You may also reorder meals via drag and drop (or your keyboard).
</p>
{{else}}
<h1 class="text-5xl -mt-4 text-teal-500 font-hairline">
Welcome to Sortable Recipes!
</h1>
<p class="text-gray-700 text-base">
Add some recipes to get started.
</p>
{{/if}}