@@ -145,11 +145,11 @@ onMounted(() => {
145
145
</UModal >
146
146
</UPageHero >
147
147
<!-- features section -->
148
- <UPageSection :ui =" { container: 'py-6 pb-12 sm:py-12 lg:py-12' }" >
148
+ <UPageSection :ui =" { container: 'py-6 pb-12 sm:py-12 lg:py-12 xl:pb-24 ' }" >
149
149
<ul class =" grid grid-cols-1 gap-x-6 sm:grid-cols-2 lg:grid-cols-3 gap-y-6 lg:gap-x-8 lg:gap-y-8 xl:gap-y-10" >
150
150
<li
151
151
v-for =" feature in page?.features"
152
- :key =" feature.name "
152
+ :key =" feature.title "
153
153
class =" flex items-start gap-x-3 relative group"
154
154
:class =" { 'opacity-75': feature.soon }"
155
155
>
@@ -161,7 +161,7 @@ onMounted(() => {
161
161
</div >
162
162
<div class =" flex flex-col" >
163
163
<h2 class =" font-medium text-(--ui-text-highlighted) inline-flex items-center gap-x-1" >
164
- {{ feature.name }} <UBadge v-if =" feature.soon" color =" neutral" variant =" subtle" size =" sm" class =" rounded-full" >
164
+ {{ feature.title }} <UBadge v-if =" feature.soon" color =" neutral" variant =" subtle" size =" sm" class =" rounded-full" >
165
165
Soon
166
166
</UBadge >
167
167
<UIcon v-if =" feature.to" name =" i-lucide-arrow-right" class =" size-4 flex-shrink-0 opacity-0 group-hover:opacity-100 transition-all duration-200 -translate-x-1 group-hover:translate-x-0" />
@@ -175,13 +175,13 @@ onMounted(() => {
175
175
</UPageSection >
176
176
177
177
<UPageCTA
178
- :description =" page.creator .quote"
178
+ :description =" page.testimonial .quote"
179
179
variant =" subtle"
180
180
class =" rounded-none"
181
181
:ui =" { container: 'sm:py-12 lg:py-12 sm:gap-8', description: 'before:content-[open-quote] after:content-[close-quote] !text-base' }"
182
182
>
183
183
<UUser
184
- v-bind =" page.creator .author"
184
+ v-bind =" page.testimonial .author"
185
185
size =" xl"
186
186
class =" justify-center"
187
187
/>
@@ -194,7 +194,7 @@ onMounted(() => {
194
194
:key =" index"
195
195
v-bind =" feature"
196
196
orientation =" vertical"
197
- :ui =" { icon : 'text-(--ui-text-highlighted)' }"
197
+ :ui =" { leadingIcon : 'text-(--ui-text-highlighted)' }"
198
198
/>
199
199
</template >
200
200
</UPageSection >
@@ -210,10 +210,10 @@ onMounted(() => {
210
210
<ul class =" grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-10 items-start justify-center" >
211
211
<li v-for =" step in page?.deploy.steps" :key =" step.title" class =" flex flex-col gap-y-8 justify-center group" >
212
212
<UColorModeImage
213
- :light =" step.img.srcLight "
214
- :dark =" step.img.srcDark "
215
- :width =" step.img .width"
216
- :height =" step.img .height"
213
+ :light =" step.image.light "
214
+ :dark =" step.image.dark "
215
+ :width =" step.image .width"
216
+ :height =" step.image .height"
217
217
:alt =" step.title"
218
218
lazy
219
219
/>
@@ -267,10 +267,10 @@ onMounted(() => {
267
267
/>
268
268
</template >
269
269
<UColorModeImage
270
- :light =" section.img.srcLight "
271
- :dark =" section.img.srcDark "
272
- :width =" section.img .width"
273
- :height =" section.img .height"
270
+ :light =" section.image.light "
271
+ :dark =" section.image.dark "
272
+ :width =" section.image .width"
273
+ :height =" section.image .height"
274
274
:alt =" section.title"
275
275
/>
276
276
</UPageSection >
0 commit comments