summaryrefslogblamecommitdiff
path: root/iridescence/src/App.vue
blob: fa08cab34109ff5e82d7fb21b394fb3b7ca22677 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                
                     
                   
                     


           

                                             
                                             
 


                

           
   



                   
                                        
                                                                               
        
<template>
  <div id="app">
    <Navbar></Navbar>
    <router-view />
    <Footer></Footer>
  </div>
</template>

<script>
import Navbar from "@/components/Navbar.vue";
import Footer from "@/components/Footer.vue";

export default {
  name: "App",
  components: {
    Navbar,
    Footer
  }
};
</script>

<style lang="scss">
@use "../node_modules/bulma/bulma.sass";
@import url("https://fonts.googleapis.com/css2?family=Nova+Mono&display=swap");
</style>