undocs 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app/app.vue +1 -1
- package/app/assets/main.css +4 -0
- package/app/modules/content/hooks.ts +3 -0
- package/app/pages/index.vue +2 -1
- package/package.json +1 -1
package/app/app.vue
CHANGED
package/app/assets/main.css
CHANGED
package/app/pages/index.vue
CHANGED
|
@@ -140,12 +140,13 @@ const hero = computed(() => {
|
|
|
140
140
|
<!-- Features -->
|
|
141
141
|
|
|
142
142
|
<UPageSection
|
|
143
|
+
v-if="landing.features?.length > 0"
|
|
143
144
|
:title="landing?.featuresTitle"
|
|
144
145
|
:description="''"
|
|
145
146
|
:ui="{
|
|
146
147
|
title: 'text-left',
|
|
147
148
|
description: 'text-left',
|
|
148
|
-
root: '
|
|
149
|
+
root: '',
|
|
149
150
|
features: 'xl:grid-cols-4 lg:gap-10',
|
|
150
151
|
}"
|
|
151
152
|
>
|