修改首页卡片
This commit is contained in:
25
app/components/IndexHero.vue
Normal file
25
app/components/IndexHero.vue
Normal 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>
|
Reference in New Issue
Block a user