Index: ReserveNGo-frontend/src/PiniaStores/UserStore.js
===================================================================
--- ReserveNGo-frontend/src/PiniaStores/UserStore.js	(revision 10c66f20ff8b31e41036536605e760856650ed34)
+++ ReserveNGo-frontend/src/PiniaStores/UserStore.js	(revision 2be93d21c7af6b3d88433242e73e6c8075d49c83)
@@ -3,99 +3,91 @@
 
 export const userStore = defineStore('userStore', {
-
   state() {
     return {
       data: {
         id: 0,
-        firstName: "",
-        lastName: "",
-        email: "",
-        phoneNumber: "",
-        role: "UN_AUTHENTICATED",
+        firstName: '',
+        lastName: '',
+        email: '',
+        phoneNumber: '',
+        role: 'UN_AUTHENTICATED',
         token: null,
         logoUrl: null,
-        profilePictureBase64Encoded: null
-      }
-
+        profilePictureBase64Encoded: null,
+      },
     }
   },
   actions: {
-
     setLocalStorage(jsonObject) {
-
       this.data = jsonObject
       //this.data.profilePictureBase64Encoded =
 
       if (this.data.logoUrl != null) {
-       this.setProfilePicturePathToLocalStorage(this.data.logoUrl);
+        this.setProfilePicturePathToLocalStorage(this.data.logoUrl)
       }
 
-
-      localStorage.setItem('userData', JSON.stringify(jsonObject));
-
+      localStorage.setItem('userData', JSON.stringify(jsonObject))
     },
     removeProfilePictureFromLocaleStorage() {
-      this.data.logoUrl = null;
-      localStorage.setItem('userData', JSON.stringify(this.data));
+      this.data.logoUrl = null
+      localStorage.setItem('userData', JSON.stringify(this.data))
     },
 
     setNewEditedDataToLocalStorage(jsonObject) {
-      const {firstName, lastName, phoneNumber} = jsonObject;
-      this.data.firstName = firstName;
-      this.data.lastName = lastName;
-      this.data.phoneNumber = phoneNumber;
+      const { firstName, lastName, phoneNumber } = jsonObject
+      this.data.firstName = firstName
+      this.data.lastName = lastName
+      this.data.phoneNumber = phoneNumber
 
-      localStorage.setItem('userData', JSON.stringify(this.data));
+      localStorage.setItem('userData', JSON.stringify(this.data))
     },
     setNewEmailToLocalStorage(jsonObject) {
-      const {email, jwt} = jsonObject;
-      this.data.email = email;
-      this.data.token = jwt;
+      const { email, jwt } = jsonObject
+      this.data.email = email
+      this.data.token = jwt
 
-      localStorage.setItem('userData', JSON.stringify(this.data));
+      localStorage.setItem('userData', JSON.stringify(this.data))
     },
     setProfilePicturePathToLocalStorage(profilePicturePath) {
-      this.data.logoUrl = profilePicturePath;
-      localStorage.setItem('userData', JSON.stringify(this.data));
+      this.data.logoUrl = profilePicturePath
+      localStorage.setItem('userData', JSON.stringify(this.data))
     },
     getLocalStorage() {
-      let nonparsed = localStorage.getItem('userData');
+      let nonparsed = localStorage.getItem('userData')
       if (nonparsed !== null) {
-        this.data = JSON.parse(nonparsed);
+        this.data = JSON.parse(nonparsed)
       }
     },
     clearLocalStorage() {
-
-      this.data =  {
+      this.data = {
         id: 0,
-        firstName: "",
-        lastName: "",
-        email: "",
-        phoneNumber: "",
-        role: "UN_AUTHENTICATED",
+        firstName: '',
+        lastName: '',
+        email: '',
+        phoneNumber: '',
+        role: 'UN_AUTHENTICATED',
         token: null,
         logoUrl: null,
-        profilePictureBase64Encoded: null
+        profilePictureBase64Encoded: null,
       }
-      localStorage.setItem('userData', JSON.stringify(this.data));
-
-    }
+      localStorage.setItem('userData', JSON.stringify(this.data))
+    },
   },
   getters: {
-    getToken(){
-      return 'Bearer ' + this.data.token;
+    getToken() {
+      return 'Bearer ' + this.data.token
     },
-    isLocaleManager(){
-      return this.data.role === "ROLE_LOCAL_MANAGER";
+    isLocaleManager() {
+      return this.data.role === 'ROLE_LOCAL_MANAGER'
     },
-    isLocaleWorker(){
-      return this.data.role === "ROLE_LOCAL_WORKER";
+    isLocaleWorker() {
+      return this.data.role === 'ROLE_LOCAL_WORKER'
     },
-    isCustomer(){
-      return this.data.role === "ROLE_CUSTOMER";
+    isCustomer() {
+      return this.data.role === 'ROLE_CUSTOMER'
     },
-    isAdmin(){
-      return this.data.role === "ROLE_ADMIN";
-    }
-  }
+    isAdmin() {
+      return this.data.role === 'ROLE_ADMIN'
+    },
+  },
 })
Index: ReserveNGo-frontend/src/PiniaStores/restaurantStore.js
===================================================================
--- ReserveNGo-frontend/src/PiniaStores/restaurantStore.js	(revision 10c66f20ff8b31e41036536605e760856650ed34)
+++ ReserveNGo-frontend/src/PiniaStores/restaurantStore.js	(revision 2be93d21c7af6b3d88433242e73e6c8075d49c83)
@@ -1,10 +1,6 @@
-
-
-import {defineStore} from 'pinia'
-
+import { defineStore } from 'pinia'
 
 export const restaurantStore = defineStore('restaurantStore', {
-
-  state(){
+  state() {
     return {
       id: '',
@@ -24,5 +20,5 @@
   },
   actions: {
-    setRestaurant (id, name, description, address, workingHours, logo, averageRating) {
+    setRestaurant(id, name, description, address, workingHours, logo, averageRating) {
       this.id = id
       this.name = name
@@ -33,7 +29,21 @@
       this.ratingAvg = averageRating
     },
-    setRestaurantDetails (id, name, description, address, workingHours, availableServices, averageRating, events, restaurantPhotos, menuPhoto, menuLink, contact, logo) {
-      this.id=id;
-      this.name = name;
+    setRestaurantDetails(
+      id,
+      name,
+      description,
+      address,
+      workingHours,
+      availableServices,
+      averageRating,
+      events,
+      restaurantPhotos,
+      menuPhoto,
+      menuLink,
+      contact,
+      logo,
+    ) {
+      this.id = id
+      this.name = name
       this.description = description
       this.address = address
@@ -48,16 +58,11 @@
       this.logo = logo
     },
-    newRestaurant (id) {
+    newRestaurant(id) {
       this.id = id
     },
-    clearRestaurant () {
+    clearRestaurant() {
       this.setRestaurant(null)
-    }
+    },
   },
-  getters: {
-
-  }
-
-
-
+  getters: {},
 })
Index: serveNGo-frontend/src/assets/logo.svg
===================================================================
--- ReserveNGo-frontend/src/assets/logo.svg	(revision 10c66f20ff8b31e41036536605e760856650ed34)
+++ 	(revision )
@@ -1,1 +1,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 261.76 226.69"><path d="M161.096.001l-30.225 52.351L100.647.001H-.005l130.877 226.688L261.749.001z" fill="#41b883"/><path d="M161.096.001l-30.225 52.351L100.647.001H52.346l78.526 136.01L209.398.001z" fill="#34495e"/></svg>
Index: ReserveNGo-frontend/src/components/Project/Nav_bar_new.vue
===================================================================
--- ReserveNGo-frontend/src/components/Project/Nav_bar_new.vue	(revision 10c66f20ff8b31e41036536605e760856650ed34)
+++ ReserveNGo-frontend/src/components/Project/Nav_bar_new.vue	(revision 2be93d21c7af6b3d88433242e73e6c8075d49c83)
@@ -38,6 +38,8 @@
         class="navbar-brand d-flex align-items-center"
       >
-        <img src="/src/assets/rng_logo.png" alt="Logo" height="50" class="me-2" />
-        <span class="fw-bold text-black">Reserve And Go</span>
+        <img src="/src/assets/rng_logo.png" alt="Logo" class="me-2" style="height: 50px" />
+        <span class="navbar-brand fw-bold fs-4 brand-accent">
+          Reserve<span class="brand-n">N</span>Go
+        </span>
       </router-link>
 
@@ -46,6 +48,8 @@
         class="navbar-brand d-flex align-items-center"
       >
-        <img src="/src/assets/rng_logo.png" alt="Logo" height="50" class="me-2" />
-        <span class="fw-bold text-black">Reserve And Go</span>
+        <img src="/src/assets/rng_logo.png" alt="Logo" class="me-2" style="height: 50px" />
+        <span class="navbar-brand fw-bold fs-4 brand-accent">
+          Reserve<span class="brand-n">N</span>Go
+        </span>
       </div>
 
@@ -80,5 +84,7 @@
 
           <li class="nav-item pe-3" v-if="user.data.role === 'ROLE_LOCAL_WORKER'">
-            <router-link to="/worker-reservations-dashboard" class="nav-link text-black">Dashboard</router-link>
+            <router-link to="/worker-reservations-dashboard" class="nav-link text-black"
+              >Dashboard</router-link
+            >
           </li>
 
@@ -122,3 +128,13 @@
   color: rgba(255, 255, 255, 0.6) !important;
 }
+
+.brand-accent {
+  letter-spacing: 1px;
+  padding-left: 5px;
+  color: #fff;
+}
+
+.brand-n {
+  color: #f55845;
+}
 </style>
Index: ReserveNGo-frontend/src/components/Project/Testing.vue
===================================================================
--- ReserveNGo-frontend/src/components/Project/Testing.vue	(revision 10c66f20ff8b31e41036536605e760856650ed34)
+++ ReserveNGo-frontend/src/components/Project/Testing.vue	(revision 2be93d21c7af6b3d88433242e73e6c8075d49c83)
@@ -1,40 +1,30 @@
-<script>
-
-
-
-
-
-</script>
+<script></script>
 
 <template>
+  <div id="component">
+    <img src="/src/assets/logo.png" alt="Logo could not be found." />
 
-<div id="component">
-  <img src="/src/assets/logo.png" alt="Logo could not be found." />
+    <h3 class="h1">Омилени Локали</h3>
 
+    <h3 class="h1">Твојте Резервации</h3>
 
-  <h3 class="h1">Омилени Локали</h3>
-
-  <h3 class="h1">Твојте Резервации</h3>
-
-  <h4 id="login">Login</h4>
-  <p class="text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eaque.</p>
-  <p class="lead text-end">Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
-  <p class="lead text-center text-warning bg-primary">Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
-</div>
+    <h4 id="login">Login</h4>
+    <p class="text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eaque.</p>
+    <p class="lead text-end">Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
+    <p class="lead text-center text-warning bg-primary">
+      Lorem ipsum dolor sit amet, consectetur adipisicing elit.
+    </p>
+  </div>
 </template>
 
 <style scoped>
-
 #login {
   float: right;
   padding: 2%;
-
 }
 
-#component{
+#component {
   width: 90%;
   height: 5%;
 }
-
-
 </style>
Index: ReserveNGo-frontend/src/components/interface/Interfaces.js
===================================================================
--- ReserveNGo-frontend/src/components/interface/Interfaces.js	(revision 2be93d21c7af6b3d88433242e73e6c8075d49c83)
+++ ReserveNGo-frontend/src/components/interface/Interfaces.js	(revision 2be93d21c7af6b3d88433242e73e6c8075d49c83)
@@ -0,0 +1,14 @@
+/*
+
+class CustomError extends Error {
+
+
+
+  constructor(message) {
+    super(message)
+  }
+
+
+
+}
+a*/
Index: serveNGo-frontend/src/components/interface/interfejsi.js
===================================================================
--- ReserveNGo-frontend/src/components/interface/interfejsi.js	(revision 10c66f20ff8b31e41036536605e760856650ed34)
+++ 	(revision )
@@ -1,14 +1,0 @@
-/*
-
-class CustomError extends Error {
-
-
-
-  constructor(message) {
-    super(message)
-  }
-
-
-
-}
-a*/
Index: ReserveNGo-frontend/src/constants/Api_config.js
===================================================================
--- ReserveNGo-frontend/src/constants/Api_config.js	(revision 10c66f20ff8b31e41036536605e760856650ed34)
+++ ReserveNGo-frontend/src/constants/Api_config.js	(revision 2be93d21c7af6b3d88433242e73e6c8075d49c83)
@@ -8,5 +8,5 @@
     // If hostLike already includes protocol, host, and maybe port/path
     const u = new URL(hostLike)
-    // If port is not specified in hostLike, apply provided port
+    // If the port is not specified in hostLike, apply the provided port
     if (!u.port && portLike) {
       u.port = String(portLike)
Index: ReserveNGo-frontend/src/mixins/utilFunctions.js
===================================================================
--- ReserveNGo-frontend/src/mixins/utilFunctions.js	(revision 10c66f20ff8b31e41036536605e760856650ed34)
+++ ReserveNGo-frontend/src/mixins/utilFunctions.js	(revision 2be93d21c7af6b3d88433242e73e6c8075d49c83)
@@ -2,32 +2,29 @@
   let [date, time] = dateTime.split('T')
   let timeSplit = time.split(':')
-  time = timeSplit[0] + ":" + timeSplit[1]
-  return {date: date, time: time}
+  time = timeSplit[0] + ':' + timeSplit[1]
+  return { date: date, time: time }
 }
 
-
 export function transformArray(arr, howMany, doDateEdit = true) {
-
-  const copiedArray = JSON.parse(JSON.stringify(arr));
+  const copiedArray = JSON.parse(JSON.stringify(arr))
 
   if (doDateEdit) {
-  copiedArray.forEach(item => {
-    item.eventEnd = transformDate(item.eventEnd)
-    item.eventStart = transformDate(item.eventStart)
-  })
+    copiedArray.forEach((item) => {
+      item.eventEnd = transformDate(item.eventEnd)
+      item.eventStart = transformDate(item.eventStart)
+    })
   }
 
   let newArray = []
-  for (let i = 0; i<arr.length; i+=howMany) {
+  for (let i = 0; i < arr.length; i += howMany) {
     newArray.push(copiedArray.slice(i, i + howMany))
   }
-  return newArray;
-
+  return newArray
 }
 
 export function isValidEmail(email) {
   const emailRegex = new RegExp(
-    /^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/
-  );
-  return emailRegex.test(email);
+    /^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/,
+  )
+  return emailRegex.test(email)
 }
Index: ReserveNGo-frontend/src/router/index.js
===================================================================
--- ReserveNGo-frontend/src/router/index.js	(revision 10c66f20ff8b31e41036536605e760856650ed34)
+++ ReserveNGo-frontend/src/router/index.js	(revision 2be93d21c7af6b3d88433242e73e6c8075d49c83)
@@ -1,4 +1,3 @@
 import { createRouter, createWebHistory } from 'vue-router'
-
 
 import home_ from '@/components/Project/Restaurant/home_.vue'
Index: serveNGo-frontend/src/stores/counter.js
===================================================================
--- ReserveNGo-frontend/src/stores/counter.js	(revision 10c66f20ff8b31e41036536605e760856650ed34)
+++ 	(revision )
@@ -1,12 +1,0 @@
-import { ref, computed } from 'vue'
-import { defineStore } from 'pinia'
-
-export const useCounterStore = defineStore('counter', () => {
-  const count = ref(0)
-  const doubleCount = computed(() => count.value * 2)
-  function increment() {
-    count.value++
-  }
-
-  return { count, doubleCount, increment }
-})
Index: serveNGo-frontend/src/views/AboutView.vue
===================================================================
--- ReserveNGo-frontend/src/views/AboutView.vue	(revision 10c66f20ff8b31e41036536605e760856650ed34)
+++ 	(revision )
@@ -1,15 +1,0 @@
-<template>
-  <div class="about">
-    <h1>This is an about page</h1>
-  </div>
-</template>
-
-<style>
-@media (min-width: 1024px) {
-  .about {
-    min-height: 100vh;
-    display: flex;
-    align-items: center;
-  }
-}
-</style>
Index: serveNGo-frontend/src/views/HomeView.vue
===================================================================
--- ReserveNGo-frontend/src/views/HomeView.vue	(revision 10c66f20ff8b31e41036536605e760856650ed34)
+++ 	(revision )
@@ -1,9 +1,0 @@
-<script setup>
-import TheWelcome from '../components/TheWelcome.vue'
-</script>
-
-<template>
-  <main>
-    <TheWelcome />
-  </main>
-</template>
