index.vue 759 B

123456789101112131415161718192021222324252627282930
  1. <script lang='ts' setup>
  2. </script>
  3. <template>
  4. <div class="bg-#0F0820">
  5. <div class="header w-1200-auto text-center pt-224px pb-150px">
  6. <h1 class="text-58px fw-800 text-#fff ls-2">
  7. Discover, Download,
  8. </h1>
  9. <h1 class="text-58px fw-800 text-#9B6CFF ls-2 !mt-10px">
  10. Delight!
  11. </h1>
  12. <el-button class="mt-30px !bg-#fff !text-#9B6CFF !b-0px" round>
  13. View Catalogs
  14. </el-button>
  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: url('https://picsum.photos/600/600') no-repeat center center;
  26. background-position-x: right;
  27. }
  28. </style>