banner.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. <script lang='ts' setup>
  2. import { useUserStore } from '@/stores/modules/user'
  3. const userStore = useUserStore()
  4. const { isLogin } = storeToRefs(userStore)
  5. </script>
  6. <template>
  7. <div class="bg-#FAF5F1">
  8. <div class="w-1400px mx-auto flex justify-between py-60px">
  9. <div class="w-800px">
  10. <h1 class="w-650px fw-600 text-48px text-#333 custom-title-font">
  11. Top Wholesale Marketplace Connecting You to Quality
  12. </h1>
  13. <div class="!mt-20px !mb-30px text-24px text-#999999 w-750px lh-36px ">
  14. Discover high-quality products from selected Chinese manufacturers, Connect with premium brands and elevate your retail business.
  15. </div>
  16. <el-button v-if="!isLogin" type="primary" plain class="w-160px !bg-#C58C64 !text-#fff !h-40px !text-16px !fw-500 !b-rd-150px">
  17. <nuxt-link to="/register">
  18. Shop on EJET
  19. </nuxt-link>
  20. </el-button>
  21. </div>
  22. <img src="~/assets/images/home_banner.png" class="w-540px h-353px" alt="EJET Selection wholesale marketplace for home decor brands" srcset="">
  23. </div>
  24. </div>
  25. </template>
  26. <style lang='less' scoped>
  27. // .custom-font{
  28. // font-family: 'CustomFont';
  29. // }
  30. </style>