index.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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-section01 />
  51. <business-home-section02 />
  52. </div>
  53. <AppFooter />
  54. </div>
  55. </template>
  56. <style lang="less" scoped>
  57. </style>