123456789101112131415161718192021222324252627282930 |
- <script lang='ts' setup>
- </script>
- <template>
- <div class="bg-#0F0820">
- <div class="header w-1200-auto text-center pt-224px pb-150px">
- <h1 class="text-58px fw-800 text-#fff ls-2">
- Discover, Download,
- </h1>
- <h1 class="text-58px fw-800 text-#9B6CFF ls-2 !mt-10px">
- Delight!
- </h1>
- <el-button class="mt-30px !bg-#fff !text-#9B6CFF !b-0px" round>
- View Catalogs
- </el-button>
- </div>
- <business-categories-list />
- <business-categories-block />
- <common-block-blog />
- <common-block-faq />
- <AppFooter />
- </div>
- </template>
- <style lang='less' scoped>
- .header{
- background: url('https://picsum.photos/600/600') no-repeat center center;
- background-position-x: right;
- }
- </style>
|