diff options
Diffstat (limited to 'src/App.vue')
-rw-r--r-- | src/App.vue | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/src/App.vue b/src/App.vue index fcc5662..ac76592 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,28 +1,27 @@ <template> <div id="app"> - <img alt="Vue logo" src="./assets/logo.png"> - <HelloWorld msg="Welcome to Your Vue.js App"/> + <h1>19 PDH Puszcza</h1> + <img alt="Work in progress" src="./assets/wip.png" /> + <h3>Strona w trakcie budowy</h3> </div> </template> <script> -import HelloWorld from './components/HelloWorld.vue' - export default { - name: 'app', - components: { - HelloWorld - } -} + name: "app", + components: {} +}; </script> <style> +@import url("https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap"); + #app { - font-family: 'Avenir', Helvetica, Arial, sans-serif; + font-family: "Roboto Slab", serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-align: center; - color: #2c3e50; + color: #181818; margin-top: 60px; } </style> |