more.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <script lang="ts" setup>
  2. const { openLoginModal } = useLoginModal()
  3. </script>
  4. <template>
  5. <div class="bg-#F3F4FB py-120px data-section" data-section-color="#F3F4FB">
  6. <div class="w-1200-auto flex justify-between">
  7. <div>
  8. <h2 class="text-#333 text-36px !fw-800 custom-title-font">
  9. Discover more abour EJET Spark
  10. </h2>
  11. <div
  12. class="h-40px lh-40px !mt-20px text-14px w-128px text-center text-#fff b-rd-200px bg-#0F0820 hover:bg-#9B6CFF hover:text-#fff cursor-pointer"
  13. @click="openLoginModal"
  14. >
  15. <!-- <nuxt-link to="/faq"> -->
  16. Get started
  17. <!-- </nuxt-link> -->
  18. </div>
  19. </div>
  20. <div class="w-680px pos-relative block gap-40px">
  21. <div
  22. class="p-30px b-rd-10px block-top bg-#F9FAFB block-shadow flex justify-between items-end"
  23. >
  24. <div>
  25. <img
  26. src="@/assets/images/email.png"
  27. class="w-32px h-32px"
  28. alt=""
  29. >
  30. <h3
  31. class="!mt-20px !mb-10px !text-24px !fw-800 custom-title-font text-#333"
  32. >
  33. Download Catalogs
  34. </h3>
  35. <div class="text-#999 lh-22px">
  36. EJET Spark description, spark the trend, ignate sales. EJET
  37. Spark catalog description,
  38. </div>
  39. </div>
  40. <el-button
  41. class="!b-0px !bg-#9B6CFF ml-40px !text-#fff !w-160px !h-32px !text-14px !b-rd-410px"
  42. >
  43. <nuxt-link to="/categories">
  44. View Catalogs
  45. </nuxt-link>
  46. </el-button>
  47. </div>
  48. <div
  49. class="p-30px b-rd-10px bg-#F9FAFB block-shadow flex justify-between items-end"
  50. >
  51. <nuxt-link to="/solutions">
  52. <img
  53. src="@/assets/images/email.png"
  54. class="w-32px h-32px"
  55. alt=""
  56. >
  57. <h3
  58. class="!mt-20px !mb-10px !text-24px !fw-800 custom-title-font text-#333"
  59. >
  60. View Solutions
  61. </h3>
  62. <div class="text-#999 lh-22px">
  63. EJET Spark description, spark the trend, ignate sales. EJET
  64. Spark catalog description,
  65. </div>
  66. </nuxt-link>
  67. </div>
  68. <div
  69. class="p-30px b-rd-10px bg-#F9FAFB block-shadow flex justify-between items-end"
  70. >
  71. <nuxt-link to="/blog">
  72. <img
  73. src="@/assets/images/email.png"
  74. class="w-32px h-32px"
  75. alt=""
  76. >
  77. <h3
  78. class="!mt-20px !mb-10px !text-24px !fw-800 custom-title-font text-#333"
  79. >
  80. View Blogs
  81. </h3>
  82. <div class="text-#999 lh-22px">
  83. EJET Spark description, spark the trend, ignate sales. EJET
  84. Spark catalog description,
  85. </div>
  86. </nuxt-link>
  87. </div>
  88. </div>
  89. </div>
  90. </div>
  91. </template>
  92. <style lang="less" scoped>
  93. .shadow {
  94. box-shadow:
  95. 0px 4px 6px -4px rgba(0, 0, 0, 0.1),
  96. 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  97. }
  98. .block-shadow {
  99. box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  100. }
  101. .block {
  102. display: grid;
  103. grid-template-rows: auto auto;
  104. grid-template-columns: 1fr 1fr;
  105. gap: 40px;
  106. .block-top {
  107. grid-column: 1/-1;
  108. }
  109. }
  110. </style>