index.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <!-- @format -->
  2. <script setup lang="ts">
  3. import { ConstKeys } from '~/enums/const-enums'
  4. useHead({
  5. title: 'EJET Selection | Top Wholesale Marketplace Connecting You to Quality',
  6. meta: [
  7. {
  8. name: 'description',
  9. content:
  10. '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.',
  11. },
  12. {
  13. property: 'og:title',
  14. content: 'EJET Selection | Top Wholesale Marketplace Connecting You to Quality',
  15. },
  16. {
  17. property: 'og:description',
  18. 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.',
  19. },
  20. {
  21. property: 'og:type',
  22. content: 'website',
  23. },
  24. {
  25. property: 'twitter:title',
  26. content: 'EJET Selection | Top Wholesale Marketplace Connecting You to Quality',
  27. },
  28. {
  29. property: 'twitter:description',
  30. 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.',
  31. },
  32. {
  33. property: 'twitter:card',
  34. content: 'summary_large_image',
  35. },
  36. ],
  37. link: [
  38. {
  39. rel: 'canonical',
  40. href: `${ConstKeys.DOMAINPRO}/`,
  41. },
  42. ],
  43. })
  44. </script>
  45. <template>
  46. <div>
  47. <business-home-banner />
  48. <div class="w-1400px mx-auto">
  49. <business-home-welfare />
  50. <business-home-brands />
  51. <!-- <business-home-products /> -->
  52. <business-home-week />
  53. <business-home-section01 />
  54. <business-home-section02 />
  55. <business-home-blogs />
  56. </div>
  57. <AppFooter />
  58. </div>
  59. </template>
  60. <style lang="less" scoped>
  61. </style>