Skip to content
Snippets Groups Projects
Hero.vue 955 B
Newer Older
fibasile's avatar
fibasile committed
<template>
  <div class="text-center has-splash q-pa-xl">
    <img src="statics/600x600fabr.png" style="max-width: 200px" />
fibasile's avatar
fibasile committed
    <div class="text-h4">Welcome to the Fabricademy</div>
    <div class="text-h4">Open Source Circular fashion catalogue</div>
    <div style="width: 30%; margin: 32px auto;">
      <q-separator />
fibasile's avatar
fibasile committed
    </div>
    <div class="text-h6 text-grey">Browse, remix and share your designs and help grow this library!</div>
fibasile's avatar
fibasile committed

    <!-- <SearchBox class="q-mt-xl" /> -->
fibasile's avatar
fibasile committed
  </div>
</template>

<script>
import SearchBox from "../components/SearchBox";

export default {
  // name: 'ComponentName',
  components: {
    SearchBox
  },
  data() {
fibasile's avatar
fibasile committed
    return {};
  }
};
</script>

<style>
.has-splash {
  /* background-image: url(/statics/splash.jpg); */
fibasile's avatar
fibasile committed
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-blend-mode: saturation;
  background-color: rgba(255, 255, 255, 0.85);
}
</style>