navigation bar

This commit is contained in:
ppanek 2020-01-07 20:10:17 +01:00
parent 7915844d87
commit bb33c13a29
1 changed files with 20 additions and 5 deletions

View File

@ -1,5 +1,20 @@
{{!-- The following component displays Ember's default welcome message. --}}
<WelcomePage />
{{!-- Feel free to remove this! --}}
{{outlet}}
<div class="bg-gray-200">
<div class="mt-1 ml-1">
<LinkTo @route="scanner">
<button class="bg-white hover:bg-gray-100 text-gray-800 font-semibold py-2 px-4 border border-gray-400 rounded shadow">
Skanner
</button>
</LinkTo>
<LinkTo @route="storage">
<button class="bg-white hover:bg-gray-100 text-gray-800 font-semibold py-2 px-4 border border-gray-400 rounded shadow">
Baza Produktów
</button>
</LinkTo>
<LinkTo @route="summary">
<button class="bg-white hover:bg-gray-100 text-gray-800 font-semibold py-2 px-4 border border-gray-400 rounded shadow">
Podsumowanie
</button>
</LinkTo>
</div>
{{outlet}}
</div>