* updated dependencies * updated readme * upgrade to vue 3 * updated buttons * duplicate id removed * updated contact
24 lines
435 B
Vue
24 lines
435 B
Vue
<template>
|
|
<main
|
|
rel="main"
|
|
>
|
|
<SiteHeader />
|
|
<RouterView />
|
|
<FooterComponent />
|
|
</main>
|
|
</template>
|
|
|
|
<script setup>
|
|
import SiteHeader from './components/SiteHeader'
|
|
import FooterComponent from './components/FooterComponent'
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
#app {
|
|
font-family: var(--font-family);
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
color: var(--text-color);
|
|
}
|
|
</style>
|