Skip to content

Commit a9a835e

Browse files
committed
updates
1 parent fd01b5a commit a9a835e

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Inventory app
22

3-
This is a clothing inventory app where users can view items in a category and create or delete items too.
3+
This is a clothing inventory app built with NodeJS and expressJS. Users can view items in a category and create or delete items too.
44

55
<img width="1280" alt="Screenshot 2021-10-04 at 23 21 59" src="https://user-images.githubusercontent.com/63427719/135932683-40aeb810-8e54-40da-9490-8c0594faf31e.png">
66

Loading

views/layout.ejs

+8-5
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,18 @@
2222
<summary class="cursor-pointer">
2323
<p class="menu">&#8801;</p>
2424
</summary>
25-
<nav class="list-none flex flex-col px-4 py-5 gap-3 bg-white text-black absolute rounded z-50" style="right: 20px">
25+
<nav
26+
class="list-none flex flex-col px-4 py-5 gap-3 bg-white text-black absolute rounded z-50"
27+
style="right: 20px"
28+
>
2629
<li class="hover:text-blue-500"><a href="/items">All Items</a></li>
27-
<li class="hover:text-blue-500"><a href="/categories">Categories</a></li>
30+
<li class="hover:text-blue-500">
31+
<a href="/categories">Categories</a>
32+
</li>
2833
<li class="hover:text-blue-500"><a href="/brands">Brands</a></li>
2934
</nav>
3035
</details>
3136
</div>
32-
<main class="flex items-center justify-center w-full">
33-
<%- body -%>
34-
</main>
37+
<main class="flex items-center justify-center w-full"><%- body -%></main>
3538
</body>
3639
</html>

0 commit comments

Comments
 (0)