Skip to content

Commit

Permalink
Merge pull request #30 from coding-bootcamps-eu/27-relocate-footer
Browse files Browse the repository at this point in the history
chore: relocates footer to App.vue
  • Loading branch information
awachstein authored Jun 13, 2023
2 parents 2a863fa + f258110 commit 414d7f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 3 additions & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
<script setup>
import { RouterLink, RouterView } from "vue-router";
import HeaderArea from "@/components/home-view/HeaderArea.vue";
import FooterArea from "@/components/home-view/FooterArea.vue";
</script>

<template>
<HeaderArea></HeaderArea>

<RouterView />
<FooterArea></FooterArea>
</template>

<style scoped></style>
2 changes: 0 additions & 2 deletions src/views/HomeView.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
<template>
<RotatingGallery></RotatingGallery>
<FooterArea />
</template>

<script setup>
import FooterArea from "@/components/home-view/FooterArea.vue";
import RotatingGallery from "../components/home-view/RotatingGallery.vue";
</script>

0 comments on commit 414d7f2

Please sign in to comment.