Footer.vue 1.86 KB
<template>
  <div class="bg-grey-darken-3 tw-flex tw-pt-[32px] tw-pb-[32px]">
    <v-container>
      <v-row>
        <v-col cols="12" lg="3" sm="12" md="6">
          <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>
        <v-col cols="12" lg="3" sm="12" md="6">
          <b>Online Product</b>
          <p><router-link to="/products">Material Reagents</router-link></p>
          <p><router-link to="/products">Lab Device Products</router-link></p>
        </v-col>
        <v-col cols="12" lg="2" sm="12" md="6">
          <b>About</b>
          <p><router-link to="/about">About us</router-link></p>
        </v-col>
        <v-col cols="12" lg="4" sm="12" md="6">
          <div class="tw-float-left tw-mr-[8px]">
            <b>Contact us</b>
            <p>Email: contact@canrd.com</p>
            <p>Phone: +86 19867737979</p>
            <p>Wechat: contactcanrd</p>
            <p>address: No. 9 Jinfeng Road, Houjie Town, Dongguan City, Guangdong Province, China.</p>
            <p>Nearby train stations:</p>
            <p>&nbsp;&nbsp;&nbsp;&nbsp;1.Humen Railway Station</p>
            <p>&nbsp;&nbsp;&nbsp;&nbsp;2.Dongguan Station</p>
            <p>Nearby airports:</p>
            <p>&nbsp;&nbsp;&nbsp;&nbsp;1.Shenzhen Bao’an International Airport</p>
            <p>&nbsp;&nbsp;&nbsp;&nbsp;2.Guangzhou Baiyun International Airport</p>
          </div>
          <img class="tw-float-left" src="/wechat.jpg" width="80" />
        </v-col>
      </v-row>
      
    </v-container>
  </div>
</template>

<script setup lang="ts"></script>

<style>
b {
  margin-bottom: 12px;
  display: block;
}
p {
  cursor: pointer;
  margin-bottom: 8px;
}
p a:hover {
  color: #e0e0e0;
}
</style>