20 lines
523 B
Vue
20 lines
523 B
Vue
<script setup lang="ts">
|
|
import type { PageDataResourceGroup } from '#layers/types/api/pageData'
|
|
|
|
const props = defineProps<{
|
|
resourcesData: PageDataResourceGroup
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<p v-motion-stagger class="description">
|
|
<BlocksVisualContent :resources-data="props.resourcesData" />
|
|
</p>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.description {
|
|
@apply text-[15px] font-[400] tracking-[-0.45px] leading-[24px] drop-shadow-[0_2px_2px_rgba(0,0,0,0.6)] md:tracking-[-0.6px] md:text-[20px] md:leading-[30px];
|
|
}
|
|
</style>
|