12345678910111213141516171819202122232425262728293031 |
- <script lang='ts' setup>
- </script>
- <template>
- <div class="bg-#0F0820">
- <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')">
- <div>
- <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 !w-160px !h-40px !b-0px !b-rd-200px" round>
- View Catalogs
- </el-button>
- </div>
- </div>
- <business-categories-list />
- <business-categories-block />
- <common-block-blog />
- <common-block-faq />
- <AppFooter />
- </div>
- </template>
- <style lang='less' scoped>
- .header{
- background-position-x: right;
- }
- </style>
|