Files
inkreach-official-website/apps/website/app/components/WhyInkReach.vue
T

33 lines
1.3 KiB
Vue

<template>
<section class="py-10 lg:py-16 px-4 lg:px-6 bg-inkreach-homepage-2">
<div class="max-w-7xl mx-auto">
<h2 class="text-2xl md:text-4xl lg:text-5xl font-bold text-center mb-8 lg:mb-10">
为什么选择<span
style="background: linear-gradient(90deg, #000000, #ec6000); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;"
>inkreach?</span>
</h2>
<div class="grid grid-cols-2 lg:grid-cols-4 gap-4 lg:gap-6">
<div
v-for="item in reasons"
:key="item.title"
class="bg-white rounded-xl p-6 lg:p-10 text-center flex flex-col justify-center items-center gap-3"
>
<div class="rounded-full flex items-center justify-center">
<img :src="item.icon" :alt="item.title" class="w-8 h-8 lg:w-auto lg:h-auto" />
</div>
<h3 class="text-lg lg:text-2xl font-bold text-gray-900">{{ item.title }}</h3>
</div>
</div>
</div>
</section>
</template>
<script setup>
const reasons = [
{ title: '零库存', icon: '/零库存图标.png' },
{ title: '快速生产', icon: '/快速生产图标.png' },
{ title: '优质产品', icon: '/优质产品图标.png' },
{ title: '全球配送', icon: '/全球配送图标.png' },
];
</script>