diff --git a/components/Carousel.vue b/components/Carousel.vue index dfc6dfd..e869937 100644 --- a/components/Carousel.vue +++ b/components/Carousel.vue @@ -33,8 +33,8 @@ onMounted(() => { -const router = useRouter() - - - diff --git a/pages/community/[...id].vue b/pages/community/[...id].vue new file mode 100644 index 0000000..0e0d1db --- /dev/null +++ b/pages/community/[...id].vue @@ -0,0 +1,41 @@ + + + diff --git a/pages/community/[id].vue b/pages/community/[id].vue deleted file mode 100644 index 254beaa..0000000 --- a/pages/community/[id].vue +++ /dev/null @@ -1,28 +0,0 @@ - - - diff --git a/pages/community/vamx.vue b/pages/community/vamx.vue index 1478ad6..acb5503 100644 --- a/pages/community/vamx.vue +++ b/pages/community/vamx.vue @@ -6,8 +6,6 @@ const items = useCommunityArticle() const tags = useCommunityTag() const data = ref([]) -const { text, copy, copied, isSupported } = useClipboard() - const list = computed(() => { if (!data.value.length) return items @@ -39,7 +37,7 @@ const status = [
@@ -72,22 +70,26 @@ const status = [ :href="item.href" class="w-full overflow-hidden rounded bg-[hsla(var(--a-surface-c),var(--un-bg-opacity,1))]" > - +
-

+

{{ item.title }}

- +
-

- {{ item.author }} -

+
+

+ {{ item.author }} +

+

- + {{ item.profession }}

diff --git a/pages/index.vue b/pages/index.vue index f2f6af4..1088c58 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -68,6 +68,7 @@ const sectionNine = useSectionNine() v-for="(content, i) in sectionThree.contentPrimary" :key="i" :href="content.href" :img="content.img" :topic="content.topic" + class="min-h-200px" :class="[`animated-delay-${i * 100}ms`, { 'animated animated-fade-in-up animated-faster': sectionThreeVis, }]" @@ -78,6 +79,7 @@ const sectionNine = useSectionNine() v-for="(content, i) in sectionThree.contentSecondary" :key="i" :href="content.href" :img="content.img" :topic="content.topic" + class="min-h-200px" :class="[`animated-delay-${i * 100}ms`, { 'animated animated-fade-in-up animated-faster': sectionThreeVis, }]" @@ -88,6 +90,7 @@ const sectionNine = useSectionNine() v-for="(content, i) in sectionThree.contentThird" :key="i" :href="content.href" :img="content.img" :topic="content.topic" + class="min-h-200px" :class="[`animated-delay-${i * 100}ms`, { 'animated animated-fade-in-up': sectionThreeVis, }]"