index.vue 860 B

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