Skip to content

Commit

Permalink
UI: removed impressum and datenschutz pages
Browse files Browse the repository at this point in the history
  • Loading branch information
lwitkowski committed Jul 30, 2024
1 parent 071f2ff commit 761bc3b
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 314 deletions.
7 changes: 0 additions & 7 deletions frontend/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,11 @@
</template>
</v-select>
</div>
<FeedbackComponent />
</div>
<div id="body">
<Toast />
<router-view :key="$route.path" />
</div>
<div id="footer">
<router-link to="/impressum">Impressum</router-link> |
<router-link to="/datenschutz">Datenschutzhinweis</router-link>
</div>
</div>
</template>

Expand Down Expand Up @@ -236,7 +231,6 @@
<script>
import Toast from 'primevue/toast';
import HTTP from './http-common';
import FeedbackComponent from './components/FeedbackComponent.vue';
export default {
data() {
Expand All @@ -247,7 +241,6 @@ export default {
},
components: {
FeedbackComponent,
Toast,
},
Expand Down
162 changes: 0 additions & 162 deletions frontend/src/components/FeedbackComponent.vue

This file was deleted.

14 changes: 0 additions & 14 deletions frontend/src/router/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import { createRouter, createWebHistory } from 'vue-router'
import Offers from '../views/Offers.vue';
import Impressum from '../views/Impressum.vue';
import Datenschutz from '../views/Datenschutz.vue';
import ModelInformation from '../views/ModelInformation.vue';
import { createApp, nextTick } from 'vue';

Expand Down Expand Up @@ -71,18 +69,6 @@ const router = createRouter({
filter: 'aircraft_type=airplane',
},
},
{
path: '/impressum',
name: 'Impressum',
component: Impressum,
meta: { title: 'Impressum / Legal Notice' },
},
{
path: '/datenschutz',
name: 'Datenschutz',
component: Datenschutz,
meta: { title: 'Datenschutz' },
},
{
path: '/',
redirect: '/offers',
Expand Down
Loading

0 comments on commit 761bc3b

Please sign in to comment.