All files / components/layout Footer.vue

0% Statements 0/1
100% Branches 0/0
0% Functions 0/1
0% Lines 0/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40                                                                               
<template>
  <div class="myfooter">
 
    <div
      class="row justify-center"
      style="margin-top: 32px;"
    >
 
      <div class="col-8 text-center">
        <p>
          <img
            src="~/assets/fabfoundation.svg"
            style="max-width: 200px; margin: 0 auto;"
          />
        </p>
        <p class="text-caption">
          This service is offered by the Fab Foundation - a US non-profit 501(c) 3 organization. Our mission is to provide access to the tools, the knowledge and the financial means to educate, innovate and invent using technology and digital fabrication to allow anyone to make (almost) anything, and thereby creating opportunities to improve lives and livelihoods around the world. Community organizations, educational institutions and non-profit concerns are our primary beneficiaries.
        </p>
        <p>Fab Economy Jobs - the Fab Foundation (c) 2016-2019</p>
      </div>
    </div>
 
  </div>
</template>
 
<script>
export default {
  // name: 'ComponentName',
  data () {
    return {}
  }
}
</script>
 
<style>
.myfooter {
  min-height: 64px;
}
</style>