index.vue 808 B

12345678910111213141516171819202122232425262728293031
  1. <script lang='ts' setup>
  2. </script>
  3. <template>
  4. <div class="bg-#0F0820 header">
  5. <div class=" w-1200-auto flex items-end justify-center text-center h-600px pb-110px">
  6. <div>
  7. <h1 class="text-58px fw-800 text-#fff ls-2 custom-title-font">
  8. Discover, Download,<br>
  9. Delight!
  10. </h1>
  11. <el-button class="mt-30px !bg-#fff !text-#9B6CFF !w-160px !h-40px !b-0px !b-rd-200px" round>
  12. View Catalogs
  13. </el-button>
  14. </div>
  15. </div>
  16. <business-categories-list />
  17. <business-categories-block />
  18. <common-block-blog />
  19. <common-block-faq />
  20. <AppFooter />
  21. </div>
  22. </template>
  23. <style lang='less' scoped>
  24. .header{
  25. background-image: url('@/assets/images/category_catalogue_banner.png');
  26. background-position: center -20px;
  27. }
  28. </style>