<template>
  <div id="app">
    <!--    <img alt="logo" src="./assets/dd-code-1.png" width="200">-->
    <a href="/">
      <img
        alt="logo"
        src="./assets/dd-code-logo.png"
      >
    </a>
    <!--<h1>DD-CODE Development Project</h1>-->
    <links />
    <router-view />
    <footers />
  </div>
</template>

<script>
import Links from '@/components/Links.vue';
import Footers from '@/components/Footers.vue';

export default {
  name: 'DdCode',
  components: {
    Links, Footers
  },
  created() {
    this.$store.dispatch('User/tryLogin');
  },
};
</script>

<style>
#app {
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2c3e50;
  margin-top: 10px;
}
</style>