feat: add SiteFooter to App
This commit is contained in:
parent
4370fbcd44
commit
05682347c7
1 changed files with 16 additions and 0 deletions
16
src/App.vue
16
src/App.vue
|
@ -1,6 +1,8 @@
|
|||
<script setup lang="ts">
|
||||
import { RouterView } from "vue-router";
|
||||
import SiteNavigation from "@/components/SiteNavigation.vue";
|
||||
import SiteFooter from "@/components/SiteFooter.vue";
|
||||
import { version } from "../package.json";
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
@ -9,4 +11,18 @@ import SiteNavigation from "@/components/SiteNavigation.vue";
|
|||
<main>
|
||||
<RouterView />
|
||||
</main>
|
||||
|
||||
<SiteFooter>
|
||||
<p>v{{ version }} © Sebin Nyshkim</p>
|
||||
<p>
|
||||
Icons ©
|
||||
<a
|
||||
href="https://fontawesome.com/license/free"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
Font Awesome
|
||||
</a>
|
||||
</p>
|
||||
</SiteFooter>
|
||||
</template>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue