about summary refs log tree commit diff
path: root/src/App.vue
diff options
context:
space:
mode:
authorPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2019-08-30 10:08:13 +0200
committerPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2019-08-30 10:08:13 +0200
commit768b047e89f419deca3ddd00af7cb75209de97b6 (patch)
tree2e94259cc97a4370897278b6845ce5a7ddf31629 /src/App.vue
parentcef8ab49453e4ce8a2e19de4e27862b059f7d9d9 (diff)
downloadpuszcza-768b047e89f419deca3ddd00af7cb75209de97b6.tar.gz
puszcza-768b047e89f419deca3ddd00af7cb75209de97b6.zip
Move to nuxtjs
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue72
1 files changed, 0 insertions, 72 deletions
diff --git a/src/App.vue b/src/App.vue
deleted file mode 100644
index 6c8c5aa..0000000
--- a/src/App.vue
+++ /dev/null
@@ -1,72 +0,0 @@
-<template>
-  <div id="app">
-    <NavBar
-      :routes="routes"
-      :externalRoutes="externalRoutes"
-      title="19 PDH Puszcza"
-      logo="assets/krajka-logo.svg"
-    />
-    <router-view id="content"></router-view>
-    <Footer :routes="routes" :specialRoutes="specialRoutes" />
-  </div>
-</template>
-
-<script>
-import NavBar from "./components/NavBar.vue";
-import Footer from "./components/Footer.vue";
-
-import { routes, externalRoutes } from "./router/index";
-
-export default {
-  name: "app",
-  components: { NavBar, Footer },
-  data() {
-    return {
-      routes,
-      externalRoutes: [],
-      specialRoutes: [
-        // {
-        //   name: 'Akcja "Ratujmy pszczoły"',
-        //   path: "/ratujmy-pszczoly"
-        // }
-      ]
-    };
-  }
-};
-</script>
-
-<style>
-@import url("https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap");
-
-html,
-body {
-  padding: 0;
-  margin: 0;
-}
-
-* {
-  box-sizing: border-box;
-}
-
-#app {
-  font-family: "Roboto Slab", serif;
-  -webkit-font-smoothing: antialiased;
-  -moz-osx-font-smoothing: grayscale;
-  color: #181818;
-  text-align: center;
-  align-items: center;
-
-  display: flex;
-  flex-direction: column;
-  min-height: 100vh;
-}
-
-#content {
-  flex: 1;
-  width: 100%;
-
-  display: flex;
-  flex-direction: column;
-  align-items: center;
-}
-</style>