Pack.vue 2.52 KB
<template>
  <v-img src="/customization_hardware/banner.png"></v-img>
  <v-container>
    <ContentDescription
      content="We are proud to introduce our PACK product to you. As a leader in the market application of
      scientific research projects, we focus on transforming scientific achievements into practical
      market applications. We provide a variety of cases to meet different project requirements,
      such as fast-charging mobile power supplies, smart flashlights, low-speed vehicles, and
      small-scale energy storage. We are committed to successfully applying the results of
      scientific research projects to the market and providing innovative solutions for our
      customers."
    />
    <MainTitle title="Customization Hardware" className="tw-mb-[16px]" />
    <v-slide-group class="pa-4 tw-w-[110%] tw-ml-[-5%] tw-mb-[32px]" center-active show-arrows>
      <v-slide-group-item v-for="n in hardwares" :key="n">
        <v-card :class="['ma-4']" width="280">
          <v-img width="256" :src="n" class="ma-2"></v-img>
        </v-card>
      </v-slide-group-item>
    </v-slide-group>

    <MainTitle title="Succeed Case" />
    <v-row class="mb-8">
      <v-col cols="8">
        <v-img src="/pack_case/8.png"></v-img>
      </v-col>
      <v-col>
        <div class="text-subtitle-1 tw-text-justify tw-items-center tw-flex tw-h-full">
          Canrd helps our customer to accomplish the requirement from PET current collector to power
          bank;
        </div>
      </v-col>
    </v-row>
    <v-divider class="mb-8"></v-divider>
    <v-row>
      <v-col>
        <div class="text-body-1 tw-h-full tw-text-justify">
          <p class="mb-3">
            1. Canrd helps our customer to accomplish the requirement from sodium cathode to
            standard car;
          </p>
          <p>
            2. Canrd is pleased to be the bridge between new material to cell and even to terminal
            application product which can accelerate the R&amp;D development;
          </p>
        </div>
      </v-col>
      <v-col cols="8">
        <v-img src="/pack_case/8.png"></v-img>
      </v-col>
    </v-row>
  </v-container>
</template>

<script setup lang="ts">
import MainTitle from '@/components/MainTitle.vue'
import ContentDescription from '@/components/ContentDescription.vue'

const hardwares = [
  '/pack_hardware/1.png',
  '/pack_hardware/2.png',
  '/pack_hardware/3.png',
  '/pack_hardware/4.png',
  '/pack_hardware/5.png',
  '/pack_hardware/6.png',
  '/pack_hardware/7.png'
]
</script>

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