refactor: rename component imports

This commit is contained in:
Sebin Nyshkim 2023-01-20 00:47:53 +01:00
parent 32c63efeaa
commit 4384759616

View file

@ -2,8 +2,8 @@
import { ref, provide } from "vue";
import { RouterView } from "vue-router";
import { isWarnKey, modalResultKey, nsfwKey, showModalKey } from "@/keys";
import RefHeader from "@/components/RefHeader.vue";
import RefFooter from "@/components/RefFooter.vue";
import SiteHeader from "@/components/SiteHeader.vue";
import SiteFooter from "@/components/SiteFooter.vue";
import SiteNavigation from "@/components/SiteNavigation.vue";
import pkg from "../package.json";
@ -40,7 +40,7 @@ provide(showModalKey, showModal);
</script>
<template>
<RefHeader>
<SiteHeader>
<!-- max 500px -->
<picture>
<source
@ -64,17 +64,17 @@ provide(showModalKey, showModal);
</picture>
<SiteNavigation />
</RefHeader>
</SiteHeader>
<main>
<RouterView />
</main>
<RefFooter>
<SiteFooter>
<p>v{{ version }} &copy; {{ new Date().getFullYear() }} Sebin Nyshkim</p>
<p>
Background Pattern &copy;
<a href="https://www.svgbackgrounds.com/">SVG Backgrounds</a>
</p>
</RefFooter>
</SiteFooter>
</template>