diff --git a/Dockerfile b/Dockerfile
index a19da90..425afc1 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,8 +1,7 @@
FROM node:lts
USER node
+WORKDIR /home/node/.npm
WORKDIR /home/node/app
-RUN mkdir .npm
-RUN mkdir /home/node/.npm
COPY . .
RUN npm install
RUN npm run build
diff --git a/public/assets/styles/tailwind.css b/public/assets/styles/tailwind.css
index 2ce42e5..6b0064b 100644
--- a/public/assets/styles/tailwind.css
+++ b/public/assets/styles/tailwind.css
@@ -3501,11 +3501,6 @@ select {
color: rgba(16, 185, 129, var(--tw-text-opacity));
}
-.text-amber-100 {
- --tw-text-opacity: 1;
- color: rgba(254, 243, 199, var(--tw-text-opacity));
-}
-
.text-orange-500 {
--tw-text-opacity: 1;
color: rgba(249, 115, 22, var(--tw-text-opacity));
diff --git a/src/App.svelte b/src/App.svelte
index 2085e09..eb6855d 100644
--- a/src/App.svelte
+++ b/src/App.svelte
@@ -1,27 +1,67 @@
-
-
-
-
-
-
-
+ {#if isAuthenticated == true}
+
+
+
+
+
+
+ {:else}
+
+ {/if}
diff --git a/src/components/Cards/CardTableInf.svelte b/src/components/Cards/CardTableInf.svelte
index 29f7c01..a29541d 100644
--- a/src/components/Cards/CardTableInf.svelte
+++ b/src/components/Cards/CardTableInf.svelte
@@ -1,9 +1,11 @@