1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <script lang='ts' setup>
- import tempItem from './comp/temp_item.vue'
- import BlockImg from '~/assets/images/block_icon.png'
- const list = [
- {
- title: 'Trendy & Market-Ready Designs',
- desc:
- 'Selected products that taps into current consumer trends, ensuring businesses always offer fresh, in-demand products.',
- img: BlockImg,
- },
- {
- title: 'Unique & Engaging Aesthetics',
- desc:
- 'Products featuring unique, engaging aesthetics that enhance shelf appeal and create memorable shopping experiences.',
- img: BlockImg,
- },
- {
- title: 'Quality & Supply Chain Reliability',
- desc:
- 'Premium products supported by a dependable supply network, ensuring both product integrity and reliable inventory flow.',
- img: BlockImg,
- },
- ]
- </script>
- <template>
- <div class="bg-#F9FAFB py-120px">
- <div class="w-1200-auto text-center">
- <h2 class="text-36px fw-800 text-#333 !mb-80px custom-title-font">
- EJET Spark Selects Products <span class="custom-title-bg03">With</span>
- </h2>
- <div class="flex gap-40px">
- <div v-for="(item, index) in list" :key="index">
- <temp-item :item />
- </div>
- </div>
- </div>
- </div>
- </template>
- <style lang='less' scoped>
-
- </style>
|