mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2025-07-20 04:39:04 +00:00
17 lines
265 B
Vue
17 lines
265 B
Vue
<script>
|
|
import Backdrop from "./components/Backdrop.vue";
|
|
import Footer from "./components/Footer.vue";
|
|
</script>
|
|
<style>
|
|
body,
|
|
html {
|
|
font-family: "Poppins";
|
|
}
|
|
</style>
|
|
<template>
|
|
<div>
|
|
<Backdrop />
|
|
<router-view />
|
|
<Footer />
|
|
</div>
|
|
</template>
|