aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/Service.vue
blob: 1766af648c7bdbf25c99cdf4febc341a531459ff (plain) (blame)
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
41
42
43
44
45
46
47
48
49
<template>
  <div>
    <div class="card">
      <a :href="item.url" :target="item.target" rel="noreferrer">
        <div
          class="card-content"
          :style="(item.colors && item.colors.background) ? {backgroundColor: item.colors.background} : null"
        >
          <div class="media">
            <div v-if="item.logo" class="media-left">
              <figure class="image is-48x48">
                <img :src="item.logo" :alt="`${item.name} logo`" />
              </figure>
            </div>
            <div v-if="item.icon" class="media-left">
              <figure class="image is-48x48">
                <i style="font-size: 35px;" :class="['fa-fw', item.icon]"></i>
              </figure>
            </div>
            <div class="media-content">
              <p
                class="title is-4"
                :style="(item.colors && item.colors.text) ? {color: item.colors.text} : null"
              >{{ item.name }}</p>
              <p
                class="subtitle is-6"
                :style="(item.colors && item.colors.text) ? {color: item.colors.text} : null"
              >{{ item.subtitle }}</p>
            </div>
          </div>
          <div class="tag" :class="item.tagstyle" v-if="item.tag">
            <strong class="tag-text">#{{ item.tag }}</strong>
          </div>
        </div>
      </a>
    </div>
  </div>
</template>

<script>
export default {
  name: "Service",
  props: {
    item: Object,
  },
};
</script>

<style scoped lang="scss"></style>