about-our-advantage

This commit is contained in:
WindowBird 2025-10-24 18:04:19 +08:00
parent 40f6fd251a
commit 84105c2a29

View File

@ -5,7 +5,7 @@ const items = [
{ {
label: '团队简介', label: '团队简介',
description: 'Make changes to your account here. Click save when you\'re done.', description: 'Make changes to your account here. Click save when you\'re done.',
icon: 'i-lucide-users',
slot: 'team' as const slot: 'team' as const
}, },
{ {
@ -264,7 +264,7 @@ onMounted(() => {
v-for="(card, index) in cards" v-for="(card, index) in cards"
:key="index" :key="index"
:description="card.description" :description="card.description"
:icon="card.icon"
:title="card.title" :title="card.title"
:ui="{ :ui="{
container: 'relative grid lg:grid-cols-[1fr_4fr] gap-8 p-6', container: 'relative grid lg:grid-cols-[1fr_4fr] gap-8 p-6',
@ -274,7 +274,8 @@ onMounted(() => {
spotlight spotlight
spotlight-color="primary" spotlight-color="primary"
> >
<img :alt="card.alt" :src="card.image" class="w-16 m-auto">
<UIcon :name="card.icon" class="size-20 m-auto text-primary"/>
</UPageCard> </UPageCard>
</div> </div>
</template> </template>