trends.vue 841 B

12345678910111213141516171819202122232425262728293031
  1. <script lang='ts' setup>
  2. </script>
  3. <template>
  4. <div class="bg-#0F0820">
  5. <div class="header w-1200-auto flex items-center h-600px bg-no-repeat bg-center" style="background-image: url('https://picsum.photos/600/600')">
  6. <div>
  7. <h1 class="text-58px fw-800 text-#fff ls-2">
  8. Stay Ahead with
  9. </h1>
  10. <h1 class="text-58px fw-800 text-#fff ls-2 !mt-10px">
  11. Trendy Products!
  12. </h1>
  13. <el-button class="mt-65px !bg-#878490 !text-#fff !bg-#878490 !w-160px !h-40px !b-#fff !b-rd-200px" round>
  14. Contact US
  15. </el-button>
  16. </div>
  17. </div>
  18. <business-trends />
  19. <business-categories-block />
  20. <common-block-blog />
  21. <common-block-faq />
  22. <AppFooter />
  23. </div>
  24. </template>
  25. <style lang='less' scoped>
  26. .header{
  27. background-position-x: right;
  28. }
  29. </style>