123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <!-- @format -->
- <script setup lang="ts">
- import { ConstKeys } from '~/enums/const-enums'
- useHead({
- title: 'EJET Selection | Top Wholesale Marketplace Connecting You to Quality',
- meta: [
- {
- name: 'description',
- content:
- 'EJET Selection is a wholesale marketplace connecting global retailers with top-quality Chinese wholesale suppliers. Shop wholesale from selected brands offering unique home decor products.',
- },
- {
- property: 'og:title',
- content: 'EJET Selection | Top Wholesale Marketplace Connecting You to Quality',
- },
- {
- property: 'og:description',
- content: 'EJET Selection is a wholesale marketplace connecting global retailers with top-quality Chinese wholesale suppliers. Shop wholesale from selected brands offering unique home decor products.',
- },
- {
- property: 'og:type',
- content: 'website',
- },
- {
- property: 'twitter:title',
- content: 'EJET Selection | Top Wholesale Marketplace Connecting You to Quality',
- },
- {
- property: 'twitter:description',
- content: 'EJET Selection is a wholesale marketplace connecting global retailers with top-quality Chinese wholesale suppliers. Shop wholesale from selected brands offering unique home decor products.',
- },
- {
- property: 'twitter:card',
- content: 'summary_large_image',
- },
- ],
- link: [
- {
- rel: 'canonical',
- href: `${ConstKeys.DOMAINPRO}/`,
- },
- ],
- })
- </script>
- <template>
- <div>
- <business-home-banner />
- <div class="w-1400px mx-auto">
- <business-home-welfare />
- <business-home-brands />
- <!-- <business-home-products /> -->
- <business-home-week />
- <business-home-section01 />
- <business-home-section02 />
- <business-home-blogs />
- </div>
- <AppFooter />
- </div>
- </template>
- <style lang="less" scoped>
- </style>
|