修改首页卡片

This commit is contained in:
2025-07-26 23:04:44 +08:00
parent 063242ea77
commit e454f3f441
7 changed files with 330 additions and 16 deletions

View File

@@ -0,0 +1,25 @@
<script setup lang="ts">
const links = ref([
{
label: 'Get started',
to: '/getting-started',
icon: 'i-lucide-square-play'
},
{
label: 'Learn more',
to: '/getting-started/theme',
color: 'neutral',
variant: 'subtle',
trailingIcon: 'i-lucide-arrow-right'
}
])
</script>
<template>
<UPageHero
headline="New release"
title="Ultimate Vue UI library"
description="A Nuxt/Vue-integrated UI library providing a rich set of fully-styled, accessible and highly customizable components for building modern web applications."
:links="links"
/>
</template>