index.vue 865 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 justify-center text-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. Discover, Download,
  9. </h1>
  10. <h1 class="text-58px fw-800 text-#9B6CFF ls-2 !mt-10px">
  11. Delight!
  12. </h1>
  13. <el-button class="mt-30px !bg-#fff !text-#9B6CFF !w-160px !h-40px !b-0px !b-rd-200px" round>
  14. View Catalogs
  15. </el-button>
  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-position-x: right;
  28. }
  29. </style>