Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.80 KB | None | 0 0
  1. // Product
  2. [
  3. {
  4. _type: 'heroWithImage',
  5. contentMaxWidth: '600px',
  6. image: categoryData.supersideHeroImage || categoryData.heroImage,
  7. gap: 'large',
  8. items: [
  9. {
  10. _type: 'heading',
  11. level: 1,
  12. content: categoryData.headerName
  13. },
  14. {
  15. _type: 'text',
  16. size: 'large',
  17. content: categoryData.headerBody[0].children[0].text
  18. },
  19. {
  20. _type: 'button',
  21. nav: true,
  22. primary: true,
  23. label: 'Let\'s get started',
  24. url: `/order-wizard/${categoryData.key}`
  25. }
  26. ]
  27. },
  28. {
  29. _type: 'pageSection',
  30. sm: false,
  31. background: 'neutral-lighter',
  32. paddingTop: true,
  33. paddingBottom: true,
  34. items: [
  35. {
  36. _type: 'clientsLogos'
  37. }
  38. ]
  39. },
  40. {
  41. _type: 'pageSection',
  42. background: 'white',
  43. paddingTop: true,
  44. paddingBottom: true,
  45. heading: 'We\'re <b>always-on</b> to deliver the design you want when you need it',
  46. items: [
  47. {
  48. _type: 'servicesList',
  49. categoryKey: categoryData.key
  50. }
  51. ]
  52. },
  53. {
  54. _type: 'pageSection',
  55. background: 'neutral-lighter',
  56. paddingTop: true,
  57. paddingBottom: true,
  58. heading: 'Take a look at some of the work we’ve done for our customers',
  59. items: [
  60. {
  61. _type: 'categorySamples',
  62. categoryKey: categoryData.key
  63. }
  64. ]
  65. },
  66. {
  67. _type: 'categoryBeforeAfterSection',
  68. categoryKey: categoryData.key,
  69. items: [
  70. {
  71. _type: 'heading',
  72. content: 'Before Superside and After Superside'
  73. },
  74. {
  75. _type: 'paragraph',
  76. content: 'Drag the slider around to see what happens when we Superside your designs'
  77. }
  78. ]
  79. },
  80. {
  81. _type: 'pageSection',
  82. background: 'white',
  83. paddingTop: true,
  84. paddingBottom: true,
  85. heading: 'Reliable, efficient delivery. <b>Every time.</b>',
  86. items: [
  87. {
  88. _type: 'commonFeatures'
  89. }
  90. ]
  91. },
  92. {
  93. _type: 'pageSection',
  94. background: 'white',
  95. paddingBottom: true,
  96. align: 'center',
  97. gap: 'medium',
  98. items: [
  99. {
  100. _type: 'button',
  101. nav: true,
  102. primary: true,
  103. label: 'Start your project',
  104. url: '/order-wizard'
  105. },
  106. {
  107. _type: 'link',
  108. hash: true,
  109. primary: true,
  110. intro: 'Questions?',
  111. label: 'Talk to an expert',
  112. url: '/#book-call'
  113. }
  114. ]
  115. },
  116. {
  117. _type: 'pageSection',
  118. background: 'neutral-lighter',
  119. paddingTop: true,
  120. paddingBottom: true,
  121. items: [
  122. {
  123. _type: 'testimonials'
  124. }
  125. ]
  126. },
  127. {
  128. _type: 'pageSection',
  129. sectionId: 'book-call',
  130. showSurfaceImage: true,
  131. hasSpaceBackground: true,
  132. items: [
  133. {
  134. _type: 'bookCall',
  135. items: [
  136. {
  137. _type: 'heading',
  138. content: 'On-brand design that’ll make you shine'
  139. },
  140. {
  141. _type: 'paragraph',
  142. content: 'The world of creativity and design is rapidly changing around us, and we’re here to help. With Superside’s subscription plans, you’ll have access to our always-on team – a crew that’s stacked with verified super talent.<br><br><b>Book a call</b> with us and join the hundreds of businesses doing design at scale with Superside. Fast, reliable, price-predictable and fully managed for you.'
  143. },
  144. {
  145. _type: 'link',
  146. nav: true,
  147. primary: true,
  148. direction: 'column',
  149. intro: 'Ready to start a project?',
  150. label: 'Get started now',
  151. url: '/order-wizard'
  152. }
  153. ]
  154. }
  155. ]
  156. }
  157. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement