diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..70c9812 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,20 @@ +# Use a Node.js base image with npm pre-installed +FROM node:alpine + +# Set the working directory +WORKDIR /app + +# Copy package.json and package-lock.json +COPY package*.json ./ + +# Install dependencies +RUN npm install + +# Copy the rest of the application code +COPY . . + +# Expose the port your app will listen on +EXPOSE 3000 + +# Start the app +CMD ["node", "index.js"] \ No newline at end of file diff --git a/src/components/home_components/navigationbar.vue b/src/components/home_components/navigationbar.vue index 0877e9b..c173654 100644 --- a/src/components/home_components/navigationbar.vue +++ b/src/components/home_components/navigationbar.vue @@ -55,13 +55,13 @@ function fun_route(destination: string) {
-
- - - - - - +
+ + + + + +
diff --git a/src/components/login_components/login_comp.vue b/src/components/login_components/login_comp.vue index 9939147..a8342eb 100644 --- a/src/components/login_components/login_comp.vue +++ b/src/components/login_components/login_comp.vue @@ -46,14 +46,14 @@ function handleSubmit(event: Event) {