You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

219 lines
6.8 KiB

2 years ago
  1. <template>
  2. <client-only
  3. ><v-spacer>
  4. <v-card
  5. flat
  6. width="100%"
  7. height="auto"
  8. class="rounded-0 position-relative"
  9. >
  10. <v-img
  11. :src="require('~/assets/img/aboutUs_HeroBG.png')"
  12. :max-height="$vuetify.breakpoint.smAndUp ? 380 : 240"
  13. :min-height="$vuetify.breakpoint.smAndUp ? 380 : 240"
  14. gradient="to top right, rgba(0,0,0,.4), rgba(0,0,0,.4)"
  15. ></v-img>
  16. <v-card
  17. flat
  18. class="hero-content-wrapper d-flex align-center justify-center"
  19. color="transparent"
  20. >
  21. <v-card
  22. flat
  23. color="transparent"
  24. :class="
  25. $vuetify.breakpoint.smAndUp
  26. ? 'neutrals--text text--darken-1 logo-title text-size-42'
  27. : 'neutrals--text text--darken-1 logo-title text-size-25'
  28. "
  29. >
  30. Start your journey from ShowEasy,<br />
  31. <span class="complementary--text text--lighten-1"
  32. >Make Your Show Easy !</span
  33. >
  34. </v-card>
  35. </v-card>
  36. </v-card>
  37. <v-card
  38. flat
  39. width="100%"
  40. class="neutrals d-flex justify-center padding-80-60"
  41. >
  42. <v-card
  43. flat
  44. width="648"
  45. class="d-flex flex-column align-center text-center"
  46. >
  47. <v-img
  48. :src="require('~/assets/img/aboutUs1.png')"
  49. width="253"
  50. height="171"
  51. ></v-img>
  52. <v-spacer
  53. :class="
  54. $vuetify.breakpoint.smAndUp
  55. ? 'complementary--text text--lighten-1 font-weight-bold my-5 text-size-26'
  56. : 'complementary--text text--lighten-1 font-weight-bold my-5 text-size-18'
  57. "
  58. >
  59. {{ $t("Our Vision & Mission") }}
  60. </v-spacer>
  61. <v-spacer
  62. :class="
  63. $vuetify.breakpoint.smAndUp
  64. ? 'neutrals--text text--darken-4 font-weight-medium text-size-18'
  65. : 'neutrals--text text--darken-4 font-weight-medium text-size-12'
  66. "
  67. v-html="
  68. $t(
  69. 'To create a simpler, more efficient, and more innovative event<br />experience for business connect to the world.'
  70. )
  71. "
  72. >
  73. </v-spacer>
  74. </v-card>
  75. </v-card>
  76. <v-card
  77. flat
  78. width="100%"
  79. class="d-flex justify-center neutrals darken-1 padding-80-60"
  80. >
  81. <v-card
  82. flat
  83. width="648"
  84. class="d-flex flex-column align-center text-center neutrals darken-1"
  85. >
  86. <v-img
  87. :src="require('~/assets/img/aboutUs2.png')"
  88. width="234"
  89. height="147"
  90. ></v-img>
  91. <v-spacer
  92. :class="
  93. $vuetify.breakpoint.smAndUp
  94. ? 'complementary--text text--lighten-1 font-weight-bold my-10 text-size-26'
  95. : 'complementary--text text--lighten-1 font-weight-bold my-10 text-size-18'
  96. "
  97. >
  98. {{ $t("Who is ShowEasy?") }}
  99. </v-spacer>
  100. <v-spacer
  101. :class="
  102. $vuetify.breakpoint.smAndUp
  103. ? 'neutrals--text text--darken-4 font-weight-bold mb-10 text-size-18'
  104. : 'neutrals--text text--darken-4 font-weight-bold mb-10 text-size-12'
  105. "
  106. v-html="
  107. $t(
  108. 'ShowEasy is an online tradeshow integrated platform that you can find<br />the worldwide tradeshow information and related services.'
  109. )
  110. "
  111. >
  112. </v-spacer>
  113. <v-spacer
  114. :class="
  115. $vuetify.breakpoint.smAndUp
  116. ? 'neutrals--text text--darken-4 mb-10 text-size-18'
  117. : 'neutrals--text text--darken-4 mb-10 text-size-12'
  118. "
  119. >
  120. {{
  121. $t(
  122. "With more than 20 years of experiences in the event industry, we know how frustrating and time-consuming it is when preparing and attending for a tradeshow."
  123. )
  124. }}
  125. </v-spacer>
  126. <v-spacer class="mb-10 grey--text text--lighten1 font-italic">
  127. {{ $t("How to choose a proper tradeshow?") }}<br />
  128. {{
  129. $t("How to find creditable and trustworthy suppliers?")
  130. }}<br />
  131. {{ $t("How to ship my exhibits safely to the venue?") }}<br />
  132. {{ $t("Where to stay during the event?") }}<br />
  133. {{ $t("Where to visit after the show?") }}
  134. </v-spacer>
  135. <v-spacer
  136. :class="
  137. $vuetify.breakpoint.smAndUp
  138. ? 'neutrals--text text--darken-4 text-size-16'
  139. : 'neutrals--text text--darken-4 text-size-12'
  140. "
  141. >
  142. {{
  143. $t(
  144. "For those with these questions in mind and got tired of being lost…"
  145. )
  146. }}<br />
  147. <span class="primary--text">
  148. {{ $t("We hear you, ShowEasy hears you.") }}<br />
  149. {{ $t("We are here to help!") }}
  150. </span>
  151. </v-spacer>
  152. <v-img
  153. :src="require('~/assets/img/aboutUs3.png')"
  154. width="252"
  155. height="205"
  156. style="margin-top: 150px; margin-bottom: 100px"
  157. ></v-img>
  158. <v-spacer
  159. :class="
  160. $vuetify.breakpoint.smAndUp
  161. ? 'primary--text mb-10 text-size-18'
  162. : 'primary--text mb-10 text-size-12'
  163. "
  164. >
  165. {{
  166. $t(
  167. "Enjoy a Well-organized, Efficient, and Productive event journey."
  168. )
  169. }}
  170. </v-spacer>
  171. <v-btn
  172. :width="$vuetify.breakpoint.smAndUp ? 285 : 187"
  173. :height="$vuetify.breakpoint.smAndUp ? 56 : 46"
  174. :class="
  175. $vuetify.breakpoint.smAndUp
  176. ? 'primary white--text remove-upper border-radius-20 text-size-20'
  177. : 'primary white--text remove-upper border-radius-20 text-size-12'
  178. "
  179. depressed
  180. style="padding: 15px 20px; letter-spacing: 0.02em"
  181. :to="localePath('/')"
  182. >
  183. {{ $t("Start with ShowEasy now!") }}
  184. </v-btn>
  185. </v-card>
  186. </v-card>
  187. </v-spacer></client-only
  188. >
  189. </template>
  190. <script>
  191. export default {
  192. auth: false,
  193. data() {
  194. return {};
  195. },
  196. };
  197. </script>
  198. <style lang="scss">
  199. .hero-content-wrapper {
  200. position: absolute;
  201. top: 0;
  202. width: 100%;
  203. height: 100%;
  204. background-color: red;
  205. }
  206. .hero-content {
  207. position: absolute;
  208. width: 100%;
  209. top: 30%;
  210. left: 5%;
  211. }
  212. .padding-80-60 {
  213. padding: 80px 60px;
  214. }
  215. </style>