Skip to content
Snippets Groups Projects
Commit ec817a95 authored by David Mendez's avatar David Mendez
Browse files

Add banner for data protection to all layouts

parent d0a55959
No related branches found
No related tags found
1 merge request!34Add banner for data protection to all layouts
......@@ -6,6 +6,7 @@
<nuxt />
</v-main>
<Footer />
<DataProtectionBanner />
</v-app>
</template>
......@@ -13,12 +14,14 @@
import EubopenAppBar from '~/components/Masthead/EubopenAppBar.vue'
import Footer from '~/components/footer/Footer.vue'
import Notifications from '~/web-components-submodule/components/common/Notifications.vue'
import DataProtectionBanner from '~/components/DataProtectionBanner.vue'
export default {
components: {
EubopenAppBar,
Footer,
Notifications,
DataProtectionBanner,
},
}
</script>
......
......@@ -7,11 +7,17 @@
{{ otherError }}
</h1>
<NuxtLink to="/"> Home page </NuxtLink>
<DataProtectionBanner />
</v-app>
</template>
<script>
import DataProtectionBanner from '~/components/DataProtectionBanner.vue'
export default {
components: {
DataProtectionBanner,
},
layout: 'empty',
props: {
error: {
......
......@@ -5,6 +5,7 @@
<nuxt />
<Footer />
<DataProtectionBanner />
</v-app>
</template>
......@@ -12,12 +13,14 @@
import EubopenAppBar from '~/components/Masthead/EubopenAppBar.vue'
import Footer from '~/components/footer/Footer.vue'
import Notifications from '~/web-components-submodule/components/common/Notifications.vue'
import DataProtectionBanner from '~/components/DataProtectionBanner.vue'
export default {
components: {
EubopenAppBar,
Footer,
Notifications,
DataProtectionBanner,
},
computed: {
searchTerm() {
......
......@@ -10,6 +10,7 @@
<nuxt />
</v-main>
<Footer />
<DataProtectionBanner />
</v-app>
</template>
......@@ -18,6 +19,7 @@ import MainAppBar from '~/web-components-submodule/components/common/Masthead/Ma
import Footer from '~/components/footer/Footer.vue'
import Notifications from '~/web-components-submodule/components/common/Notifications.vue'
import Logo from '~/components/Logo.vue'
import DataProtectionBanner from '~/components/DataProtectionBanner.vue'
export default {
components: {
......@@ -25,6 +27,7 @@ export default {
Footer,
Notifications,
Logo,
DataProtectionBanner,
},
}
</script>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment