<template>
  <div
    id="app"
    class="flex flex-col h-screen justify-between"
  >
    <!--    <img alt="logo" src="./assets/dd-code-1.png" width="200">-->
    <!-- <div class="row">
      <div
        class="col-sm-2 ml-10 mt-2"
        style="float: left; min-width: 150px; max-width: 150px;"
      >
        <a href="/">
          <img
            alt="logo"
            style="width: 150px"
            src="./assets/cd-code-logo.png"
          >
        </a>
      </div>
      <div class="col-sm-9 mt-12">
        <links />
      </div>
    </div> -->
    <the-nav-bar />

    <!--<h1>DD-CODE Development Project</h1>-->
    <main>
      <router-view />
    </main>

    <footers />
  </div>
</template>

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

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

<style>
#app {
  font-family: neue-haas-grotesk-text, sans-serif, neue-haas-grotesk-text,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2c3e50;
  margin-top: 10px;
}
</style>