PricingSection.vue 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. <template>
  2. <section id="pricing" class="pb-8">
  3. <v-container fluid>
  4. <v-row align="center" justify="center">
  5. <v-col cols="10">
  6. <v-card style="width: 100%">
  7. <h1 class="text-center pt-6 font-weight-light display-2">Blog</h1>
  8. <v-divider class="my-6"></v-divider>
  9. <v-row class="text-center">
  10. <v-col class="col-12 col-sm-6 col-md-4">
  11. <div class="flex-center">
  12. <v-card-text>
  13. <div class="flex-center">
  14. <div class="circle1">
  15. <div class="circle2">
  16. <v-img src="~@/assets/img/paperplane.svg"></v-img>
  17. </div>
  18. </div>
  19. </div>
  20. <div class="text--disabled text-uppercase text-h5 my-2">Básico</div>
  21. <v-divider class="my-2"/>
  22. <div class="text-uppercase blue--text">Domínios personalizados</div>
  23. </v-card-text>
  24. <v-divider style="margin-right: -23px" vertical v-if="this.$vuetify.breakpoint.smAndUp"></v-divider>
  25. </div>
  26. <v-divider class="mx-4" v-if="!this.$vuetify.breakpoint.smAndUp"></v-divider>
  27. </v-col>
  28. <v-col class="col-12 col-sm-6 col-md-4">
  29. <div class="flex-center">
  30. <v-card-text>
  31. <div class="flex-center">
  32. <div class="circle1">
  33. <div class="circle2">
  34. <v-img src="~@/assets/img/airplane.svg"/>
  35. </div>
  36. </div>
  37. </div>
  38. <div class="text--disabled text-uppercase text-h5 my-2">Padrão</div>
  39. <v-divider class="my-2"/>
  40. <div class="text-uppercase blue--text">Domínios personalizados</div>
  41. </v-card-text>
  42. <v-divider style="margin-right: -23px" vertical v-if="this.$vuetify.breakpoint.mdAndUp"></v-divider>
  43. </div>
  44. <v-divider class="mx-4" v-if="!this.$vuetify.breakpoint.smAndUp"></v-divider>
  45. </v-col>
  46. <v-col class="col-12 col-md-4">
  47. <v-divider v-if="this.$vuetify.breakpoint.smOnly" class="mx-4"></v-divider>
  48. <div class="flex-center">
  49. <v-card-text>
  50. <div class="flex-center">
  51. <div class="circle1">
  52. <div class="circle2">
  53. <v-img src="~@/assets/img/aeroplane.svg"/>
  54. </div>
  55. </div>
  56. </div>
  57. <div class="text--disabled text-uppercase text-h5 my-2">Empresarial</div>
  58. <v-divider class="my-2"/>
  59. <div class="text-uppercase blue--text">Domínios personalizados</div>
  60. </v-card-text>
  61. </div>
  62. </v-col>
  63. </v-row>
  64. </v-card>
  65. </v-col>
  66. </v-row>
  67. </v-container>
  68. <div class="svg-border-rounded text-light">
  69. <!-- <svg
  70. xmlns="http://www.w3.org/2000/svg"
  71. viewBox="0 0 144.54 17.34"
  72. preserveAspectRatio="none"
  73. fill="currentColor"
  74. >
  75. <path
  76. d="M144.54,17.34H0V0H144.54ZM0,0S32.36,17.34,72.27,17.34,144.54,0,144.54,0"
  77. />
  78. </svg> -->
  79. <svg
  80. xmlns="http://www.w3.org/2000/svg"
  81. viewBox="0 0 1440 320"
  82. preserveAspectRatio="none"
  83. fill="currentColor"
  84. >
  85. <path
  86. d="M0,64L80,90.7C160,117,320,171,480,181.3C640,192,800,160,960,138.7C1120,117,1280,107,1360,101.3L1440,96L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z"
  87. ></path>
  88. </svg>
  89. </div>
  90. </section>
  91. </template>
  92. <style lang="scss">
  93. $main_color: #283e79;
  94. ul {
  95. font-size: 13px;
  96. line-height: 1.5em;
  97. margin: 5px 0 15px;
  98. padding: 0;
  99. li {
  100. list-style: none;
  101. position: relative;
  102. padding: 0 0 0 20px;
  103. }
  104. li {
  105. &::before {
  106. content: "";
  107. position: absolute;
  108. left: 0;
  109. top: 5px;
  110. width: 10px;
  111. height: 10px;
  112. background-color: $main_color;
  113. border-radius: 50%;
  114. -moz-border-radius: 50%;
  115. -webkit-eeborder-radius: 50%;
  116. }
  117. }
  118. }
  119. </style>
  120. <style scoped>
  121. .header {
  122. background-color: #283e79;
  123. color: white;
  124. }
  125. .circle1 {
  126. border-radius: 50%;
  127. width: 150px;
  128. height: 150px;
  129. background-color: #f0f8ff;
  130. display: flex;
  131. align-items: center;
  132. justify-content: center;
  133. }
  134. .circle2 {
  135. border-radius: 50%;
  136. width: 100px;
  137. height: 100px;
  138. background-color: #e0effc;
  139. display: flex;
  140. align-items: center;
  141. justify-content: center;
  142. }
  143. .flex-center {
  144. display: flex;
  145. align-items: center;
  146. justify-content: center;
  147. }
  148. .svg-border-rounded svg {
  149. position: absolute;
  150. bottom: 0;
  151. left: 0;
  152. width: 100%;
  153. color: #f4f7f5;
  154. z-index: -1;
  155. }
  156. #pricing {
  157. z-index: 0;
  158. }
  159. .content {
  160. z-index: 1;
  161. }
  162. svg {
  163. overflow: hidden;
  164. }
  165. section {
  166. position: relative;
  167. }
  168. </style>
  169. <script>
  170. export default {
  171. data: () => ({
  172. planos: [
  173. {
  174. title: "Básico",
  175. price: "R$100,00",
  176. img: "f1.png",
  177. features: [
  178. {
  179. icon: {
  180. text: "mdi-check",
  181. color: "success",
  182. },
  183. text: "Feature 1",
  184. },
  185. {
  186. icon: {
  187. text: "mdi-check",
  188. color: "success",
  189. },
  190. text: "Feature 2",
  191. },
  192. {
  193. icon: {
  194. text: "mdi-cancel",
  195. color: "red",
  196. },
  197. text: "Feature 3",
  198. },
  199. {
  200. icon: {
  201. text: "mdi-cancel",
  202. color: "red",
  203. },
  204. text: "Feature 4",
  205. },
  206. ],
  207. },
  208. {
  209. title: "Padrão",
  210. price: "R$150,00",
  211. img: "f2.png",
  212. features: [
  213. {
  214. icon: {
  215. text: "mdi-check",
  216. color: "success",
  217. },
  218. text: "Feature 1",
  219. color: "success",
  220. },
  221. {
  222. icon: {
  223. text: "mdi-check",
  224. color: "success",
  225. },
  226. text: "Feature 2",
  227. },
  228. {
  229. icon: {
  230. text: "mdi-check",
  231. color: "success",
  232. },
  233. text: "Feature 3",
  234. color: "success",
  235. },
  236. {
  237. icon: {
  238. text: "mdi-cancel",
  239. color: "red",
  240. },
  241. text: "Feature 4",
  242. },
  243. ],
  244. },
  245. {
  246. title: "Premium",
  247. price: "R$250,00",
  248. img: "f3.png",
  249. features: [
  250. {
  251. icon: {
  252. text: "mdi-check",
  253. color: "success",
  254. },
  255. text: "Feature 1",
  256. color: "success",
  257. },
  258. {
  259. icon: {
  260. text: "mdi-check",
  261. color: "success",
  262. },
  263. text: "Feature 2",
  264. },
  265. {
  266. icon: {
  267. text: "mdi-check",
  268. color: "success",
  269. },
  270. text: "Feature 3",
  271. color: "success",
  272. },
  273. {
  274. icon: {
  275. text: "mdi-check",
  276. color: "success",
  277. },
  278. text: "Feature 4",
  279. color: "success",
  280. },
  281. ],
  282. },
  283. ],
  284. }),
  285. computed: {
  286. size() {
  287. const size = {md: "large", xl: "x-large"}[
  288. this.$vuetify.breakpoint.name
  289. ];
  290. return size ? {[size]: true} : {};
  291. }
  292. },
  293. };
  294. </script>