Blame view

src/components/Footer.vue 1.4 KB
sanmu authored
1
<template>
sanmu authored
2
3
4
  <div class="bg-grey-darken-3 tw-flex tw-pt-[32px] tw-pb-[32px]">
    <v-container>
      <v-row>
sanmu authored
5
        <v-col cols="12" lg="3" sm="12" md="6">
sanmu authored
6
7
8
9
10
          <b>Solution</b>
          <p><router-link to="/equipment">Lab Device</router-link></p>
          <p><router-link to="/customize">Customized BatterTesting</router-link></p>
          <p><router-link to="/pack">Pack</router-link></p>
        </v-col>
sanmu authored
11
        <v-col cols="12" lg="3" sm="12" md="6">
sanmu authored
12
13
          <b>Online Product</b>
          <p><router-link to="/products">Material Reagents</router-link></p>
sanmu authored
14
          <p><router-link to="/products">Lab Device Products</router-link></p>
sanmu authored
15
        </v-col>
sanmu authored
16
        <v-col cols="12" lg="3" sm="12" md="6">
sanmu authored
17
18
19
          <b>About</b>
          <p><router-link to="/about">About us</router-link></p>
        </v-col>
sanmu authored
20
        <v-col cols="12" lg="3" sm="12" md="6">
sanmu authored
21
          <div class="tw-w-[250px] tw-float-left tw-mr-[8px]">
sanmu authored
22
            <b>Contact us</b>
sanmu authored
23
            <p>Email: contact@canrd.com</p>
sanmu authored
24
25
            <p>Phone: +86 19867737979</p>
            <p>Wechat: contactcanrd</p>
sanmu authored
26
          </div>
sanmu authored
27
          <img class="tw-float-left" src="/wechat.jpg" width="80" />
sanmu authored
28
29
30
        </v-col>
      </v-row>
    </v-container>
sanmu authored
31
32
33
34
35
  </div>
</template>

<script setup lang="ts"></script>
sanmu authored
36
37
38
39
40
41
42
43
44
45
46
47
48
<style>
b {
  margin-bottom: 12px;
  display: block;
}
p {
  cursor: pointer;
  margin-bottom: 8px;
}
p a:hover {
  color: #e0e0e0;
}
</style>