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