diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 10bd218..0000000
--- a/Dockerfile
+++ /dev/null
@@ -1,30 +0,0 @@
-# Use an official Node.js runtime as a parent image
-FROM node:18-alpine AS build
-
-# Set the working directory in the container
-WORKDIR /app
-
-# Copy only package.json and package-lock.json to avoid unnecessary rebuilds
-COPY package*.json ./
-
-# Install dependencies
-RUN npm install
-
-# Copy the rest of the application code to the container
-COPY . .
-
-# Build the Vue.js app for production
-RUN npm run build
-
-# Use a lightweight web server to serve the app
-FROM nginx:1.25-alpine
-
-# Copy the built files to the Nginx web server's directory
-COPY --from=build /app/dist /usr/share/nginx/html
-
-# Expose port 80
-EXPOSE 80
-
-# Start Nginx
-CMD ["nginx", "-g", "daemon off;"]
-
diff --git a/src/App.vue b/src/App.vue
index 0065815..4ddcae8 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,18 +1,12 @@
-
-
+