kofi-stack-template-generator 2.1.37 → 2.1.39

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (323) hide show
  1. package/.turbo/turbo-build.log +6 -6
  2. package/dist/index.js +8057 -440
  3. package/package.json +1 -1
  4. package/src/templates.generated.ts +248 -94
  5. package/templates/integrations/posthog/src/components/providers/posthog-provider.tsx.hbs +4 -1
  6. package/templates/marketing/payload/package.json.hbs +41 -26
  7. package/templates/marketing/payload/src/Footer/Component.client.tsx +288 -0
  8. package/templates/marketing/payload/src/Footer/Component.tsx +11 -0
  9. package/templates/marketing/payload/src/Footer/RowLabel.tsx +15 -0
  10. package/templates/marketing/payload/src/Footer/config.ts +178 -0
  11. package/templates/marketing/payload/src/Footer/hooks/{revalidateFooter.ts.hbs → revalidateFooter.ts} +5 -5
  12. package/templates/marketing/payload/src/Header/Component.client.tsx +94 -0
  13. package/templates/marketing/payload/src/Header/Component.tsx +10 -0
  14. package/templates/marketing/payload/src/Header/MegaMenu/index.tsx +197 -0
  15. package/templates/marketing/payload/src/Header/MobileMenu/HamburgerIcon.tsx +48 -0
  16. package/templates/marketing/payload/src/Header/MobileMenu/index.tsx +299 -0
  17. package/templates/marketing/payload/src/Header/Nav/index.tsx +76 -0
  18. package/templates/marketing/payload/src/Header/RowLabel.tsx +21 -0
  19. package/templates/marketing/payload/src/Header/config.ts +208 -0
  20. package/templates/marketing/payload/src/Header/hooks/{revalidateHeader.ts.hbs → revalidateHeader.ts} +5 -5
  21. package/templates/marketing/payload/src/access/{authenticated.ts.hbs → authenticated.ts} +1 -1
  22. package/templates/marketing/payload/src/access/{authenticatedOrPublished.ts.hbs → authenticatedOrPublished.ts} +8 -8
  23. package/templates/marketing/payload/src/app/(docs)/docs/[[...slug]]/page.tsx +117 -0
  24. package/templates/marketing/payload/src/app/(docs)/docs/layout.tsx +39 -0
  25. package/templates/marketing/payload/src/app/(docs)/layout.tsx +44 -0
  26. package/templates/marketing/payload/src/app/(frontend)/(sitemaps)/pages-sitemap.xml/route.ts +68 -0
  27. package/templates/marketing/payload/src/app/(frontend)/(sitemaps)/posts-sitemap.xml/route.ts +55 -0
  28. package/templates/marketing/payload/src/app/(frontend)/[slug]/page.client.tsx +15 -0
  29. package/templates/marketing/payload/src/app/(frontend)/[slug]/page.tsx +114 -0
  30. package/templates/marketing/payload/src/app/(frontend)/api/docs-search/route.ts +67 -0
  31. package/templates/marketing/payload/src/app/(frontend)/api/newsletter/route.ts +260 -0
  32. package/templates/marketing/payload/src/app/(frontend)/api/pricing/route.ts +266 -0
  33. package/templates/marketing/payload/src/app/(frontend)/globals.css +1019 -0
  34. package/templates/marketing/payload/src/app/(frontend)/layout.tsx +114 -0
  35. package/templates/marketing/payload/src/app/(frontend)/next/exit-preview/route.ts +7 -0
  36. package/templates/marketing/payload/src/app/(frontend)/next/preview/route.ts +56 -0
  37. package/templates/marketing/payload/src/app/(frontend)/next/seed/route.ts +31 -0
  38. package/templates/marketing/payload/src/app/(frontend)/not-found.tsx +17 -0
  39. package/templates/marketing/payload/src/app/(frontend)/page.tsx +5 -0
  40. package/templates/marketing/payload/src/app/(frontend)/posts/BlogPageClient.tsx +190 -0
  41. package/templates/marketing/payload/src/app/(frontend)/posts/[slug]/BlogPostContent.tsx +67 -0
  42. package/templates/marketing/payload/src/app/(frontend)/posts/[slug]/page.client.tsx +15 -0
  43. package/templates/marketing/payload/src/app/(frontend)/posts/[slug]/page.tsx +118 -0
  44. package/templates/marketing/payload/src/app/(frontend)/posts/page/[pageNumber]/page.client.tsx +15 -0
  45. package/templates/marketing/payload/src/app/(frontend)/posts/page/[pageNumber]/page.tsx +87 -0
  46. package/templates/marketing/payload/src/app/(frontend)/posts/page.tsx +49 -0
  47. package/templates/marketing/payload/src/app/(frontend)/search/page.client.tsx +15 -0
  48. package/templates/marketing/payload/src/app/(frontend)/search/page.tsx +87 -0
  49. package/templates/marketing/payload/src/app/(payload)/admin/[[...segments]]/not-found.tsx +24 -0
  50. package/templates/marketing/payload/src/app/(payload)/admin/[[...segments]]/page.tsx +24 -0
  51. package/templates/marketing/payload/src/app/(payload)/admin/importMap.js +83 -0
  52. package/templates/marketing/payload/src/app/(payload)/api/[...slug]/{route.ts.hbs → route.ts} +13 -9
  53. package/templates/marketing/payload/src/app/(payload)/api/graphql/{route.ts.hbs → route.ts} +2 -2
  54. package/templates/marketing/payload/src/app/(payload)/api/graphql-playground/{route.ts.hbs → route.ts} +3 -3
  55. package/templates/marketing/payload/src/app/(payload)/custom.scss +0 -0
  56. package/templates/marketing/payload/src/app/(payload)/layout.tsx +31 -0
  57. package/templates/marketing/payload/src/blocks/ArchiveBlock/Component.tsx +65 -0
  58. package/templates/marketing/payload/src/blocks/ArchiveBlock/config.ts +120 -0
  59. package/templates/marketing/payload/src/blocks/Banner/Component.tsx +26 -0
  60. package/templates/marketing/payload/src/blocks/Banner/config.ts +67 -0
  61. package/templates/marketing/payload/src/blocks/BentoFeatures/Component.tsx +243 -0
  62. package/templates/marketing/payload/src/blocks/BentoFeatures/config.ts +147 -0
  63. package/templates/marketing/payload/src/blocks/CallToAction/Component.tsx +31 -0
  64. package/templates/marketing/payload/src/blocks/CallToAction/config.ts +68 -0
  65. package/templates/marketing/payload/src/blocks/Code/Component.client.tsx +33 -0
  66. package/templates/marketing/payload/src/blocks/Code/Component.tsx +21 -0
  67. package/templates/marketing/payload/src/blocks/Code/CopyButton.tsx +33 -0
  68. package/templates/marketing/payload/src/blocks/Code/config.ts +33 -0
  69. package/templates/marketing/payload/src/blocks/Content/Component.tsx +41 -0
  70. package/templates/marketing/payload/src/blocks/Content/config.ts +105 -0
  71. package/templates/marketing/payload/src/blocks/FAQAccordion/Component.tsx +90 -0
  72. package/templates/marketing/payload/src/blocks/FAQAccordion/config.ts +75 -0
  73. package/templates/marketing/payload/src/blocks/FeatureGrid/Component.tsx +124 -0
  74. package/templates/marketing/payload/src/blocks/FeatureGrid/config.ts +120 -0
  75. package/templates/marketing/payload/src/blocks/FeatureShowcase/Component.tsx +107 -0
  76. package/templates/marketing/payload/src/blocks/FeatureShowcase/config.ts +111 -0
  77. package/templates/marketing/payload/src/blocks/FinalCTA/Component.tsx +117 -0
  78. package/templates/marketing/payload/src/blocks/FinalCTA/config.ts +50 -0
  79. package/templates/marketing/payload/src/blocks/Form/Checkbox/index.tsx +45 -0
  80. package/templates/marketing/payload/src/blocks/Form/Component.tsx +170 -0
  81. package/templates/marketing/payload/src/blocks/Form/Country/index.tsx +65 -0
  82. package/templates/marketing/payload/src/blocks/Form/Country/options.ts +982 -0
  83. package/templates/marketing/payload/src/blocks/Form/Email/index.tsx +38 -0
  84. package/templates/marketing/payload/src/blocks/Form/Error/index.tsx +13 -0
  85. package/templates/marketing/payload/src/blocks/Form/Message/index.tsx +13 -0
  86. package/templates/marketing/payload/src/blocks/Form/Number/index.tsx +36 -0
  87. package/templates/marketing/payload/src/blocks/Form/Select/index.tsx +63 -0
  88. package/templates/marketing/payload/src/blocks/Form/State/index.tsx +64 -0
  89. package/templates/marketing/payload/src/blocks/Form/State/options.ts +52 -0
  90. package/templates/marketing/payload/src/blocks/Form/Text/index.tsx +32 -0
  91. package/templates/marketing/payload/src/blocks/Form/Textarea/index.tsx +40 -0
  92. package/templates/marketing/payload/src/blocks/Form/Width/index.tsx +13 -0
  93. package/templates/marketing/payload/src/blocks/Form/config.ts +77 -0
  94. package/templates/marketing/payload/src/blocks/Form/fields.tsx +21 -0
  95. package/templates/marketing/payload/src/blocks/HowItWorks/Component.tsx +59 -0
  96. package/templates/marketing/payload/src/blocks/HowItWorks/config.ts +88 -0
  97. package/templates/marketing/payload/src/blocks/IndustryTabs/Component.tsx +132 -0
  98. package/templates/marketing/payload/src/blocks/IndustryTabs/config.ts +77 -0
  99. package/templates/marketing/payload/src/blocks/LogoBanner/Component.tsx +95 -0
  100. package/templates/marketing/payload/src/blocks/LogoBanner/config.ts +48 -0
  101. package/templates/marketing/payload/src/blocks/MediaBlock/Component.tsx +67 -0
  102. package/templates/marketing/payload/src/blocks/MediaBlock/config.ts +14 -0
  103. package/templates/marketing/payload/src/blocks/Personas/Component.tsx +69 -0
  104. package/templates/marketing/payload/src/blocks/Personas/config.ts +96 -0
  105. package/templates/marketing/payload/src/blocks/PricingTable/ComparisonTable.tsx +250 -0
  106. package/templates/marketing/payload/src/blocks/PricingTable/Component.tsx +443 -0
  107. package/templates/marketing/payload/src/blocks/PricingTable/config.ts +142 -0
  108. package/templates/marketing/payload/src/blocks/ProofBanner/Component.tsx +65 -0
  109. package/templates/marketing/payload/src/blocks/ProofBanner/config.ts +42 -0
  110. package/templates/marketing/payload/src/blocks/RelatedPosts/Component.tsx +32 -0
  111. package/templates/marketing/payload/src/blocks/RenderBlocks.tsx +92 -0
  112. package/templates/marketing/payload/src/blocks/TestimonialsGrid/Component.tsx +107 -0
  113. package/templates/marketing/payload/src/blocks/TestimonialsGrid/config.ts +76 -0
  114. package/templates/marketing/payload/src/blocks/TrustColumns/Component.tsx +83 -0
  115. package/templates/marketing/payload/src/blocks/TrustColumns/config.ts +70 -0
  116. package/templates/marketing/payload/src/collections/Categories.ts +28 -0
  117. package/templates/marketing/payload/src/collections/FAQs/index.ts +100 -0
  118. package/templates/marketing/payload/src/collections/Media.ts +160 -0
  119. package/templates/marketing/payload/src/collections/Pages/hooks/revalidatePage.ts +43 -0
  120. package/templates/marketing/payload/src/collections/Pages/index.ts +168 -0
  121. package/templates/marketing/payload/src/collections/Posts/hooks/populateAuthors.ts +41 -0
  122. package/templates/marketing/payload/src/collections/Posts/hooks/revalidatePost.ts +44 -0
  123. package/templates/marketing/payload/src/collections/Posts/index.ts +259 -0
  124. package/templates/marketing/payload/src/collections/Users/index.ts +26 -0
  125. package/templates/marketing/payload/src/components/AdminBar/index.scss +7 -0
  126. package/templates/marketing/payload/src/components/AdminBar/index.tsx +89 -0
  127. package/templates/marketing/payload/src/components/Analytics/CTATracker.tsx +33 -0
  128. package/templates/marketing/payload/src/components/Analytics/FeatureSectionTracker.tsx +47 -0
  129. package/templates/marketing/payload/src/components/Analytics/PricingViewTracker.tsx +46 -0
  130. package/templates/marketing/payload/src/components/Analytics/index.tsx +3 -0
  131. package/templates/marketing/payload/src/components/BeforeDashboard/SeedButton/index.tsx +89 -0
  132. package/templates/marketing/payload/src/components/BeforeDashboard/index.tsx +69 -0
  133. package/templates/marketing/payload/src/components/BeforeLogin/index.tsx +14 -0
  134. package/templates/marketing/payload/src/components/BlogCTA/index.tsx +77 -0
  135. package/templates/marketing/payload/src/components/Card/index.tsx +85 -0
  136. package/templates/marketing/payload/src/components/CollectionArchive/index.tsx +32 -0
  137. package/templates/marketing/payload/src/components/JsonLd/index.tsx +138 -0
  138. package/templates/marketing/payload/src/components/Link/index.tsx +66 -0
  139. package/templates/marketing/payload/src/components/LivePreviewListener/index.tsx +10 -0
  140. package/templates/marketing/payload/src/components/Logo/Logo.tsx +46 -0
  141. package/templates/marketing/payload/src/components/Media/ImageMedia/index.tsx +80 -0
  142. package/templates/marketing/payload/src/components/Media/VideoMedia/index.tsx +47 -0
  143. package/templates/marketing/payload/src/components/Media/index.tsx +26 -0
  144. package/templates/marketing/payload/src/components/Media/types.ts +22 -0
  145. package/templates/marketing/payload/src/components/PageRange/index.tsx +57 -0
  146. package/templates/marketing/payload/src/components/Pagination/index.tsx +101 -0
  147. package/templates/marketing/payload/src/components/PayloadRedirects/index.tsx +48 -0
  148. package/templates/marketing/payload/src/components/RichText/index.tsx +152 -0
  149. package/templates/marketing/payload/src/components/TableOfContents/index.tsx +128 -0
  150. package/templates/marketing/payload/src/components/ui/accordion.tsx +64 -0
  151. package/templates/marketing/payload/src/components/ui/button.tsx +52 -0
  152. package/templates/marketing/payload/src/components/ui/card.tsx +48 -0
  153. package/templates/marketing/payload/src/components/ui/checkbox.tsx +27 -0
  154. package/templates/marketing/payload/src/components/ui/input.tsx +22 -0
  155. package/templates/marketing/payload/src/components/ui/label.tsx +19 -0
  156. package/templates/marketing/payload/src/components/ui/pagination.tsx +92 -0
  157. package/templates/marketing/payload/src/components/ui/select.tsx +144 -0
  158. package/templates/marketing/payload/src/components/ui/textarea.tsx +21 -0
  159. package/templates/marketing/payload/src/endpoints/seed/contact-form.ts +111 -0
  160. package/templates/marketing/payload/src/endpoints/seed/contact-page.ts +56 -0
  161. package/templates/marketing/payload/src/endpoints/seed/directoryhub/about.ts +281 -0
  162. package/templates/marketing/payload/src/endpoints/seed/directoryhub/faqs.ts +224 -0
  163. package/templates/marketing/payload/src/endpoints/seed/directoryhub/features/automation.ts +229 -0
  164. package/templates/marketing/payload/src/endpoints/seed/directoryhub/features/custom-fields.ts +229 -0
  165. package/templates/marketing/payload/src/endpoints/seed/directoryhub/features/dashboard.ts +228 -0
  166. package/templates/marketing/payload/src/endpoints/seed/directoryhub/features/index.ts +6 -0
  167. package/templates/marketing/payload/src/endpoints/seed/directoryhub/features/monetization.ts +230 -0
  168. package/templates/marketing/payload/src/endpoints/seed/directoryhub/features/seo.ts +229 -0
  169. package/templates/marketing/payload/src/endpoints/seed/directoryhub/features/templates.ts +218 -0
  170. package/templates/marketing/payload/src/endpoints/seed/directoryhub/home.ts +555 -0
  171. package/templates/marketing/payload/src/endpoints/seed/directoryhub/index.ts +767 -0
  172. package/templates/marketing/payload/src/endpoints/seed/directoryhub/posts.ts +623 -0
  173. package/templates/marketing/payload/src/endpoints/seed/directoryhub/pricing.ts +251 -0
  174. package/templates/marketing/payload/src/endpoints/seed/directoryhub/privacy.ts +457 -0
  175. package/templates/marketing/payload/src/endpoints/seed/directoryhub/richtext-helper.ts +88 -0
  176. package/templates/marketing/payload/src/endpoints/seed/directoryhub/terms.ts +478 -0
  177. package/templates/marketing/payload/src/endpoints/seed/directoryhub/use-cases/b2b-vendor-hubs.ts +229 -0
  178. package/templates/marketing/payload/src/endpoints/seed/directoryhub/use-cases/communities.ts +230 -0
  179. package/templates/marketing/payload/src/endpoints/seed/directoryhub/use-cases/index.ts +4 -0
  180. package/templates/marketing/payload/src/endpoints/seed/directoryhub/use-cases/local-services.ts +230 -0
  181. package/templates/marketing/payload/src/endpoints/seed/directoryhub/use-cases/marketplaces.ts +230 -0
  182. package/templates/marketing/payload/src/endpoints/seed/home-static.ts +691 -0
  183. package/templates/marketing/payload/src/endpoints/seed/home.ts +675 -0
  184. package/templates/marketing/payload/src/endpoints/seed/image-1.ts +67 -0
  185. package/templates/marketing/payload/src/endpoints/seed/image-2.ts +67 -0
  186. package/templates/marketing/payload/src/endpoints/seed/image-3.ts +67 -0
  187. package/templates/marketing/payload/src/endpoints/seed/image-hero-1.ts +5 -0
  188. package/templates/marketing/payload/src/endpoints/seed/image-hero1.webp +0 -0
  189. package/templates/marketing/payload/src/endpoints/seed/image-post1.webp +0 -0
  190. package/templates/marketing/payload/src/endpoints/seed/image-post2.webp +0 -0
  191. package/templates/marketing/payload/src/endpoints/seed/image-post3.webp +0 -0
  192. package/templates/marketing/payload/src/endpoints/seed/index.ts +335 -0
  193. package/templates/marketing/payload/src/endpoints/seed/post-1.ts +315 -0
  194. package/templates/marketing/payload/src/endpoints/seed/post-2.ts +232 -0
  195. package/templates/marketing/payload/src/endpoints/seed/post-3.ts +268 -0
  196. package/templates/marketing/payload/src/fields/defaultLexical.ts +73 -0
  197. package/templates/marketing/payload/src/fields/link.ts +139 -0
  198. package/templates/marketing/payload/src/fields/linkGroup.ts +28 -0
  199. package/templates/marketing/payload/src/heros/HighImpact/index.tsx +56 -0
  200. package/templates/marketing/payload/src/heros/LowImpact/index.tsx +48 -0
  201. package/templates/marketing/payload/src/heros/MediumImpact/index.tsx +50 -0
  202. package/templates/marketing/payload/src/heros/PostHero/index.tsx +73 -0
  203. package/templates/marketing/payload/src/heros/ProductShowcase/AnimatedMockup.tsx +241 -0
  204. package/templates/marketing/payload/src/heros/ProductShowcase/index.tsx +108 -0
  205. package/templates/marketing/payload/src/heros/{RenderHero.tsx.hbs → RenderHero.tsx} +9 -9
  206. package/templates/marketing/payload/src/heros/config.ts +121 -0
  207. package/templates/marketing/payload/src/hooks/populatePublishedAt.ts +15 -0
  208. package/templates/marketing/payload/src/hooks/{revalidateRedirects.ts.hbs → revalidateRedirects.ts} +3 -3
  209. package/templates/marketing/payload/src/lib/convex.ts +13 -0
  210. package/templates/marketing/payload/src/lib/docs-source.ts +138 -0
  211. package/templates/marketing/payload/src/lib/mdx.tsx +191 -0
  212. package/templates/marketing/payload/src/payload.config.ts.hbs +95 -145
  213. package/templates/marketing/payload/src/plugins/index.ts +107 -0
  214. package/templates/marketing/payload/src/providers/HeaderTheme/index.tsx +34 -0
  215. package/templates/marketing/payload/src/providers/PostHogProvider.tsx +33 -0
  216. package/templates/marketing/payload/src/providers/Theme/InitTheme/{index.tsx.hbs → index.tsx} +11 -10
  217. package/templates/marketing/payload/src/providers/Theme/ThemeSelector/index.tsx +133 -0
  218. package/templates/marketing/payload/src/providers/Theme/ThemeSelector/types.ts +7 -0
  219. package/templates/marketing/payload/src/providers/Theme/index.tsx +60 -0
  220. package/templates/marketing/payload/src/providers/Theme/shared.ts +17 -0
  221. package/templates/marketing/payload/src/providers/Theme/{types.ts.hbs → types.ts} +3 -3
  222. package/templates/marketing/payload/src/providers/index.tsx +17 -0
  223. package/templates/marketing/payload/src/search/Component.tsx +42 -0
  224. package/templates/marketing/payload/src/search/beforeSync.ts +56 -0
  225. package/templates/marketing/payload/src/search/fieldOverrides.ts +61 -0
  226. package/templates/marketing/payload/src/utilities/deepMerge.ts +35 -0
  227. package/templates/marketing/payload/src/utilities/extractHeadings.ts +78 -0
  228. package/templates/marketing/payload/src/utilities/formatAuthors.ts +24 -0
  229. package/templates/marketing/payload/src/utilities/formatDateTime.ts +20 -0
  230. package/templates/marketing/payload/src/utilities/generateMeta.ts +93 -0
  231. package/templates/marketing/payload/src/utilities/generatePreviewPath.ts +33 -0
  232. package/templates/marketing/payload/src/utilities/getDocument.ts +32 -0
  233. package/templates/marketing/payload/src/utilities/getGlobals.ts +26 -0
  234. package/templates/marketing/payload/src/utilities/getMeUser.ts +43 -0
  235. package/templates/marketing/payload/src/utilities/getMediaUrl.ts +24 -0
  236. package/templates/marketing/payload/src/utilities/getRedirects.ts +26 -0
  237. package/templates/marketing/payload/src/utilities/getURL.ts +26 -0
  238. package/templates/marketing/payload/src/utilities/mergeOpenGraph.ts +26 -0
  239. package/templates/marketing/payload/src/utilities/toKebabCase.ts +5 -0
  240. package/templates/marketing/payload/src/utilities/ui.ts +12 -0
  241. package/templates/marketing/payload/src/utilities/useClickableCard.ts +108 -0
  242. package/templates/marketing/payload/src/utilities/useDebounce.ts +17 -0
  243. package/templates/packages/ui/src/components/button.tsx.hbs +53 -0
  244. package/templates/packages/ui/src/components/card.tsx.hbs +76 -0
  245. package/templates/packages/ui/src/components/separator.tsx.hbs +26 -0
  246. package/templates/marketing/payload/src/Footer/config.ts.hbs +0 -178
  247. package/templates/marketing/payload/src/Footer/index.ts.hbs +0 -1
  248. package/templates/marketing/payload/src/Header/RowLabel.tsx.hbs +0 -21
  249. package/templates/marketing/payload/src/Header/config.ts.hbs +0 -208
  250. package/templates/marketing/payload/src/Header/index.ts.hbs +0 -1
  251. package/templates/marketing/payload/src/access/index.ts.hbs +0 -3
  252. package/templates/marketing/payload/src/app/(frontend)/layout.tsx.hbs +0 -19
  253. package/templates/marketing/payload/src/app/(frontend)/next/seed/route.ts.hbs +0 -31
  254. package/templates/marketing/payload/src/app/(frontend)/page.tsx.hbs +0 -83
  255. package/templates/marketing/payload/src/app/(payload)/admin/[[...segments]]/not-found.tsx.hbs +0 -24
  256. package/templates/marketing/payload/src/app/(payload)/admin/[[...segments]]/page.tsx.hbs +0 -24
  257. package/templates/marketing/payload/src/app/(payload)/admin/importMap.js.hbs +0 -1
  258. package/templates/marketing/payload/src/app/(payload)/custom.scss.hbs +0 -1
  259. package/templates/marketing/payload/src/app/(payload)/layout.tsx.hbs +0 -31
  260. package/templates/marketing/payload/src/app/globals.css.hbs +0 -83
  261. package/templates/marketing/payload/src/app/layout.tsx.hbs +0 -10
  262. package/templates/marketing/payload/src/blocks/Benefits.ts.hbs +0 -34
  263. package/templates/marketing/payload/src/blocks/CTA.ts.hbs +0 -39
  264. package/templates/marketing/payload/src/blocks/Content.ts.hbs +0 -9
  265. package/templates/marketing/payload/src/blocks/FAQ.ts.hbs +0 -18
  266. package/templates/marketing/payload/src/blocks/Features.ts.hbs +0 -34
  267. package/templates/marketing/payload/src/blocks/Hero.ts.hbs +0 -40
  268. package/templates/marketing/payload/src/blocks/LogoBanner.ts.hbs +0 -17
  269. package/templates/marketing/payload/src/blocks/Pricing.ts.hbs +0 -37
  270. package/templates/marketing/payload/src/blocks/Testimonials.ts.hbs +0 -21
  271. package/templates/marketing/payload/src/blocks/index.ts.hbs +0 -9
  272. package/templates/marketing/payload/src/collections/Categories/index.ts.hbs +0 -28
  273. package/templates/marketing/payload/src/collections/FAQs/index.ts.hbs +0 -100
  274. package/templates/marketing/payload/src/collections/Media.ts.hbs +0 -164
  275. package/templates/marketing/payload/src/collections/Pages/hooks/revalidatePage.ts.hbs +0 -43
  276. package/templates/marketing/payload/src/collections/Pages/index.ts.hbs +0 -142
  277. package/templates/marketing/payload/src/collections/Posts/hooks/populateAuthors.ts.hbs +0 -41
  278. package/templates/marketing/payload/src/collections/Posts/hooks/revalidatePost.ts.hbs +0 -44
  279. package/templates/marketing/payload/src/collections/Posts/index.ts.hbs +0 -244
  280. package/templates/marketing/payload/src/collections/Users/index.ts.hbs +0 -26
  281. package/templates/marketing/payload/src/collections/index.ts.hbs +0 -6
  282. package/templates/marketing/payload/src/components/BeforeDashboard/SeedButton/index.tsx.hbs +0 -89
  283. package/templates/marketing/payload/src/components/BeforeDashboard/index.tsx.hbs +0 -69
  284. package/templates/marketing/payload/src/components/BeforeLogin/index.tsx.hbs +0 -14
  285. package/templates/marketing/payload/src/components/Link/index.tsx.hbs +0 -79
  286. package/templates/marketing/payload/src/components/Media/index.tsx.hbs +0 -67
  287. package/templates/marketing/payload/src/components/RichText/index.tsx.hbs +0 -44
  288. package/templates/marketing/payload/src/endpoints/seed/home.ts.hbs +0 -76
  289. package/templates/marketing/payload/src/endpoints/seed/image-1.ts.hbs +0 -5
  290. package/templates/marketing/payload/src/endpoints/seed/image-2.ts.hbs +0 -5
  291. package/templates/marketing/payload/src/endpoints/seed/image-hero.ts.hbs +0 -5
  292. package/templates/marketing/payload/src/endpoints/seed/index.ts.hbs +0 -235
  293. package/templates/marketing/payload/src/endpoints/seed/post-1.ts.hbs +0 -252
  294. package/templates/marketing/payload/src/fields/defaultLexical.ts.hbs +0 -73
  295. package/templates/marketing/payload/src/fields/link.ts.hbs +0 -139
  296. package/templates/marketing/payload/src/fields/linkGroup.ts.hbs +0 -28
  297. package/templates/marketing/payload/src/globals/index.ts.hbs +0 -2
  298. package/templates/marketing/payload/src/heros/HighImpact/index.tsx.hbs +0 -53
  299. package/templates/marketing/payload/src/heros/LowImpact/index.tsx.hbs +0 -48
  300. package/templates/marketing/payload/src/heros/MediumImpact/index.tsx.hbs +0 -46
  301. package/templates/marketing/payload/src/heros/PostHero/index.tsx.hbs +0 -68
  302. package/templates/marketing/payload/src/heros/ProductShowcase/index.tsx.hbs +0 -88
  303. package/templates/marketing/payload/src/heros/config.ts.hbs +0 -112
  304. package/templates/marketing/payload/src/heros/index.ts.hbs +0 -7
  305. package/templates/marketing/payload/src/hooks/index.ts.hbs +0 -2
  306. package/templates/marketing/payload/src/hooks/populatePublishedAt.ts.hbs +0 -15
  307. package/templates/marketing/payload/src/providers/HeaderTheme/index.tsx.hbs +0 -34
  308. package/templates/marketing/payload/src/providers/Theme/index.tsx.hbs +0 -60
  309. package/templates/marketing/payload/src/providers/Theme/shared.ts.hbs +0 -17
  310. package/templates/marketing/payload/src/providers/index.tsx.hbs +0 -18
  311. package/templates/marketing/payload/src/utilities/deepMerge.ts.hbs +0 -35
  312. package/templates/marketing/payload/src/utilities/formatAuthors.ts.hbs +0 -24
  313. package/templates/marketing/payload/src/utilities/formatDateTime.ts.hbs +0 -13
  314. package/templates/marketing/payload/src/utilities/generateMeta.ts.hbs +0 -87
  315. package/templates/marketing/payload/src/utilities/generatePreviewPath.ts.hbs +0 -33
  316. package/templates/marketing/payload/src/utilities/getURL.ts.hbs +0 -26
  317. package/templates/marketing/payload/src/utilities/index.ts.hbs +0 -8
  318. package/templates/marketing/payload/src/utilities/mergeOpenGraph.ts.hbs +0 -26
  319. /package/templates/marketing/payload/src/access/{anyone.ts.hbs → anyone.ts} +0 -0
  320. /package/templates/marketing/payload/src/components/BeforeDashboard/SeedButton/{index.scss.hbs → index.scss} +0 -0
  321. /package/templates/marketing/payload/src/components/BeforeDashboard/{index.scss.hbs → index.scss} +0 -0
  322. /package/templates/marketing/payload/src/fields/{index.ts.hbs → index.ts} +0 -0
  323. /package/templates/marketing/payload/src/utilities/{canUseDOM.ts.hbs → canUseDOM.ts} +0 -0
@@ -0,0 +1,982 @@
1
+ export const countryOptions = [
2
+ {
3
+ label: "Afghanistan",
4
+ value: "AF",
5
+ },
6
+ {
7
+ label: "Åland Islands",
8
+ value: "AX",
9
+ },
10
+ {
11
+ label: "Albania",
12
+ value: "AL",
13
+ },
14
+ {
15
+ label: "Algeria",
16
+ value: "DZ",
17
+ },
18
+ {
19
+ label: "American Samoa",
20
+ value: "AS",
21
+ },
22
+ {
23
+ label: "Andorra",
24
+ value: "AD",
25
+ },
26
+ {
27
+ label: "Angola",
28
+ value: "AO",
29
+ },
30
+ {
31
+ label: "Anguilla",
32
+ value: "AI",
33
+ },
34
+ {
35
+ label: "Antarctica",
36
+ value: "AQ",
37
+ },
38
+ {
39
+ label: "Antigua and Barbuda",
40
+ value: "AG",
41
+ },
42
+ {
43
+ label: "Argentina",
44
+ value: "AR",
45
+ },
46
+ {
47
+ label: "Armenia",
48
+ value: "AM",
49
+ },
50
+ {
51
+ label: "Aruba",
52
+ value: "AW",
53
+ },
54
+ {
55
+ label: "Australia",
56
+ value: "AU",
57
+ },
58
+ {
59
+ label: "Austria",
60
+ value: "AT",
61
+ },
62
+ {
63
+ label: "Azerbaijan",
64
+ value: "AZ",
65
+ },
66
+ {
67
+ label: "Bahamas",
68
+ value: "BS",
69
+ },
70
+ {
71
+ label: "Bahrain",
72
+ value: "BH",
73
+ },
74
+ {
75
+ label: "Bangladesh",
76
+ value: "BD",
77
+ },
78
+ {
79
+ label: "Barbados",
80
+ value: "BB",
81
+ },
82
+ {
83
+ label: "Belarus",
84
+ value: "BY",
85
+ },
86
+ {
87
+ label: "Belgium",
88
+ value: "BE",
89
+ },
90
+ {
91
+ label: "Belize",
92
+ value: "BZ",
93
+ },
94
+ {
95
+ label: "Benin",
96
+ value: "BJ",
97
+ },
98
+ {
99
+ label: "Bermuda",
100
+ value: "BM",
101
+ },
102
+ {
103
+ label: "Bhutan",
104
+ value: "BT",
105
+ },
106
+ {
107
+ label: "Bolivia",
108
+ value: "BO",
109
+ },
110
+ {
111
+ label: "Bosnia and Herzegovina",
112
+ value: "BA",
113
+ },
114
+ {
115
+ label: "Botswana",
116
+ value: "BW",
117
+ },
118
+ {
119
+ label: "Bouvet Island",
120
+ value: "BV",
121
+ },
122
+ {
123
+ label: "Brazil",
124
+ value: "BR",
125
+ },
126
+ {
127
+ label: "British Indian Ocean Territory",
128
+ value: "IO",
129
+ },
130
+ {
131
+ label: "Brunei Darussalam",
132
+ value: "BN",
133
+ },
134
+ {
135
+ label: "Bulgaria",
136
+ value: "BG",
137
+ },
138
+ {
139
+ label: "Burkina Faso",
140
+ value: "BF",
141
+ },
142
+ {
143
+ label: "Burundi",
144
+ value: "BI",
145
+ },
146
+ {
147
+ label: "Cambodia",
148
+ value: "KH",
149
+ },
150
+ {
151
+ label: "Cameroon",
152
+ value: "CM",
153
+ },
154
+ {
155
+ label: "Canada",
156
+ value: "CA",
157
+ },
158
+ {
159
+ label: "Cape Verde",
160
+ value: "CV",
161
+ },
162
+ {
163
+ label: "Cayman Islands",
164
+ value: "KY",
165
+ },
166
+ {
167
+ label: "Central African Republic",
168
+ value: "CF",
169
+ },
170
+ {
171
+ label: "Chad",
172
+ value: "TD",
173
+ },
174
+ {
175
+ label: "Chile",
176
+ value: "CL",
177
+ },
178
+ {
179
+ label: "China",
180
+ value: "CN",
181
+ },
182
+ {
183
+ label: "Christmas Island",
184
+ value: "CX",
185
+ },
186
+ {
187
+ label: "Cocos (Keeling) Islands",
188
+ value: "CC",
189
+ },
190
+ {
191
+ label: "Colombia",
192
+ value: "CO",
193
+ },
194
+ {
195
+ label: "Comoros",
196
+ value: "KM",
197
+ },
198
+ {
199
+ label: "Congo",
200
+ value: "CG",
201
+ },
202
+ {
203
+ label: "Congo, The Democratic Republic of the",
204
+ value: "CD",
205
+ },
206
+ {
207
+ label: "Cook Islands",
208
+ value: "CK",
209
+ },
210
+ {
211
+ label: "Costa Rica",
212
+ value: "CR",
213
+ },
214
+ {
215
+ label: "Cote D'Ivoire",
216
+ value: "CI",
217
+ },
218
+ {
219
+ label: "Croatia",
220
+ value: "HR",
221
+ },
222
+ {
223
+ label: "Cuba",
224
+ value: "CU",
225
+ },
226
+ {
227
+ label: "Cyprus",
228
+ value: "CY",
229
+ },
230
+ {
231
+ label: "Czech Republic",
232
+ value: "CZ",
233
+ },
234
+ {
235
+ label: "Denmark",
236
+ value: "DK",
237
+ },
238
+ {
239
+ label: "Djibouti",
240
+ value: "DJ",
241
+ },
242
+ {
243
+ label: "Dominica",
244
+ value: "DM",
245
+ },
246
+ {
247
+ label: "Dominican Republic",
248
+ value: "DO",
249
+ },
250
+ {
251
+ label: "Ecuador",
252
+ value: "EC",
253
+ },
254
+ {
255
+ label: "Egypt",
256
+ value: "EG",
257
+ },
258
+ {
259
+ label: "El Salvador",
260
+ value: "SV",
261
+ },
262
+ {
263
+ label: "Equatorial Guinea",
264
+ value: "GQ",
265
+ },
266
+ {
267
+ label: "Eritrea",
268
+ value: "ER",
269
+ },
270
+ {
271
+ label: "Estonia",
272
+ value: "EE",
273
+ },
274
+ {
275
+ label: "Ethiopia",
276
+ value: "ET",
277
+ },
278
+ {
279
+ label: "Falkland Islands (Malvinas)",
280
+ value: "FK",
281
+ },
282
+ {
283
+ label: "Faroe Islands",
284
+ value: "FO",
285
+ },
286
+ {
287
+ label: "Fiji",
288
+ value: "FJ",
289
+ },
290
+ {
291
+ label: "Finland",
292
+ value: "FI",
293
+ },
294
+ {
295
+ label: "France",
296
+ value: "FR",
297
+ },
298
+ {
299
+ label: "French Guiana",
300
+ value: "GF",
301
+ },
302
+ {
303
+ label: "French Polynesia",
304
+ value: "PF",
305
+ },
306
+ {
307
+ label: "French Southern Territories",
308
+ value: "TF",
309
+ },
310
+ {
311
+ label: "Gabon",
312
+ value: "GA",
313
+ },
314
+ {
315
+ label: "Gambia",
316
+ value: "GM",
317
+ },
318
+ {
319
+ label: "Georgia",
320
+ value: "GE",
321
+ },
322
+ {
323
+ label: "Germany",
324
+ value: "DE",
325
+ },
326
+ {
327
+ label: "Ghana",
328
+ value: "GH",
329
+ },
330
+ {
331
+ label: "Gibraltar",
332
+ value: "GI",
333
+ },
334
+ {
335
+ label: "Greece",
336
+ value: "GR",
337
+ },
338
+ {
339
+ label: "Greenland",
340
+ value: "GL",
341
+ },
342
+ {
343
+ label: "Grenada",
344
+ value: "GD",
345
+ },
346
+ {
347
+ label: "Guadeloupe",
348
+ value: "GP",
349
+ },
350
+ {
351
+ label: "Guam",
352
+ value: "GU",
353
+ },
354
+ {
355
+ label: "Guatemala",
356
+ value: "GT",
357
+ },
358
+ {
359
+ label: "Guernsey",
360
+ value: "GG",
361
+ },
362
+ {
363
+ label: "Guinea",
364
+ value: "GN",
365
+ },
366
+ {
367
+ label: "Guinea-Bissau",
368
+ value: "GW",
369
+ },
370
+ {
371
+ label: "Guyana",
372
+ value: "GY",
373
+ },
374
+ {
375
+ label: "Haiti",
376
+ value: "HT",
377
+ },
378
+ {
379
+ label: "Heard Island and Mcdonald Islands",
380
+ value: "HM",
381
+ },
382
+ {
383
+ label: "Holy See (Vatican City State)",
384
+ value: "VA",
385
+ },
386
+ {
387
+ label: "Honduras",
388
+ value: "HN",
389
+ },
390
+ {
391
+ label: "Hong Kong",
392
+ value: "HK",
393
+ },
394
+ {
395
+ label: "Hungary",
396
+ value: "HU",
397
+ },
398
+ {
399
+ label: "Iceland",
400
+ value: "IS",
401
+ },
402
+ {
403
+ label: "India",
404
+ value: "IN",
405
+ },
406
+ {
407
+ label: "Indonesia",
408
+ value: "ID",
409
+ },
410
+ {
411
+ label: "Iran, Islamic Republic Of",
412
+ value: "IR",
413
+ },
414
+ {
415
+ label: "Iraq",
416
+ value: "IQ",
417
+ },
418
+ {
419
+ label: "Ireland",
420
+ value: "IE",
421
+ },
422
+ {
423
+ label: "Isle of Man",
424
+ value: "IM",
425
+ },
426
+ {
427
+ label: "Israel",
428
+ value: "IL",
429
+ },
430
+ {
431
+ label: "Italy",
432
+ value: "IT",
433
+ },
434
+ {
435
+ label: "Jamaica",
436
+ value: "JM",
437
+ },
438
+ {
439
+ label: "Japan",
440
+ value: "JP",
441
+ },
442
+ {
443
+ label: "Jersey",
444
+ value: "JE",
445
+ },
446
+ {
447
+ label: "Jordan",
448
+ value: "JO",
449
+ },
450
+ {
451
+ label: "Kazakhstan",
452
+ value: "KZ",
453
+ },
454
+ {
455
+ label: "Kenya",
456
+ value: "KE",
457
+ },
458
+ {
459
+ label: "Kiribati",
460
+ value: "KI",
461
+ },
462
+ {
463
+ label: "Democratic People's Republic of Korea",
464
+ value: "KP",
465
+ },
466
+ {
467
+ label: "Korea, Republic of",
468
+ value: "KR",
469
+ },
470
+ {
471
+ label: "Kosovo",
472
+ value: "XK",
473
+ },
474
+ {
475
+ label: "Kuwait",
476
+ value: "KW",
477
+ },
478
+ {
479
+ label: "Kyrgyzstan",
480
+ value: "KG",
481
+ },
482
+ {
483
+ label: "Lao People's Democratic Republic",
484
+ value: "LA",
485
+ },
486
+ {
487
+ label: "Latvia",
488
+ value: "LV",
489
+ },
490
+ {
491
+ label: "Lebanon",
492
+ value: "LB",
493
+ },
494
+ {
495
+ label: "Lesotho",
496
+ value: "LS",
497
+ },
498
+ {
499
+ label: "Liberia",
500
+ value: "LR",
501
+ },
502
+ {
503
+ label: "Libyan Arab Jamahiriya",
504
+ value: "LY",
505
+ },
506
+ {
507
+ label: "Liechtenstein",
508
+ value: "LI",
509
+ },
510
+ {
511
+ label: "Lithuania",
512
+ value: "LT",
513
+ },
514
+ {
515
+ label: "Luxembourg",
516
+ value: "LU",
517
+ },
518
+ {
519
+ label: "Macao",
520
+ value: "MO",
521
+ },
522
+ {
523
+ label: "Macedonia, The Former Yugoslav Republic of",
524
+ value: "MK",
525
+ },
526
+ {
527
+ label: "Madagascar",
528
+ value: "MG",
529
+ },
530
+ {
531
+ label: "Malawi",
532
+ value: "MW",
533
+ },
534
+ {
535
+ label: "Malaysia",
536
+ value: "MY",
537
+ },
538
+ {
539
+ label: "Maldives",
540
+ value: "MV",
541
+ },
542
+ {
543
+ label: "Mali",
544
+ value: "ML",
545
+ },
546
+ {
547
+ label: "Malta",
548
+ value: "MT",
549
+ },
550
+ {
551
+ label: "Marshall Islands",
552
+ value: "MH",
553
+ },
554
+ {
555
+ label: "Martinique",
556
+ value: "MQ",
557
+ },
558
+ {
559
+ label: "Mauritania",
560
+ value: "MR",
561
+ },
562
+ {
563
+ label: "Mauritius",
564
+ value: "MU",
565
+ },
566
+ {
567
+ label: "Mayotte",
568
+ value: "YT",
569
+ },
570
+ {
571
+ label: "Mexico",
572
+ value: "MX",
573
+ },
574
+ {
575
+ label: "Micronesia, Federated States of",
576
+ value: "FM",
577
+ },
578
+ {
579
+ label: "Moldova, Republic of",
580
+ value: "MD",
581
+ },
582
+ {
583
+ label: "Monaco",
584
+ value: "MC",
585
+ },
586
+ {
587
+ label: "Mongolia",
588
+ value: "MN",
589
+ },
590
+ {
591
+ label: "Montenegro",
592
+ value: "ME",
593
+ },
594
+ {
595
+ label: "Montserrat",
596
+ value: "MS",
597
+ },
598
+ {
599
+ label: "Morocco",
600
+ value: "MA",
601
+ },
602
+ {
603
+ label: "Mozambique",
604
+ value: "MZ",
605
+ },
606
+ {
607
+ label: "Myanmar",
608
+ value: "MM",
609
+ },
610
+ {
611
+ label: "Namibia",
612
+ value: "NA",
613
+ },
614
+ {
615
+ label: "Nauru",
616
+ value: "NR",
617
+ },
618
+ {
619
+ label: "Nepal",
620
+ value: "NP",
621
+ },
622
+ {
623
+ label: "Netherlands",
624
+ value: "NL",
625
+ },
626
+ {
627
+ label: "Netherlands Antilles",
628
+ value: "AN",
629
+ },
630
+ {
631
+ label: "New Caledonia",
632
+ value: "NC",
633
+ },
634
+ {
635
+ label: "New Zealand",
636
+ value: "NZ",
637
+ },
638
+ {
639
+ label: "Nicaragua",
640
+ value: "NI",
641
+ },
642
+ {
643
+ label: "Niger",
644
+ value: "NE",
645
+ },
646
+ {
647
+ label: "Nigeria",
648
+ value: "NG",
649
+ },
650
+ {
651
+ label: "Niue",
652
+ value: "NU",
653
+ },
654
+ {
655
+ label: "Norfolk Island",
656
+ value: "NF",
657
+ },
658
+ {
659
+ label: "Northern Mariana Islands",
660
+ value: "MP",
661
+ },
662
+ {
663
+ label: "Norway",
664
+ value: "NO",
665
+ },
666
+ {
667
+ label: "Oman",
668
+ value: "OM",
669
+ },
670
+ {
671
+ label: "Pakistan",
672
+ value: "PK",
673
+ },
674
+ {
675
+ label: "Palau",
676
+ value: "PW",
677
+ },
678
+ {
679
+ label: "Palestinian Territory, Occupied",
680
+ value: "PS",
681
+ },
682
+ {
683
+ label: "Panama",
684
+ value: "PA",
685
+ },
686
+ {
687
+ label: "Papua New Guinea",
688
+ value: "PG",
689
+ },
690
+ {
691
+ label: "Paraguay",
692
+ value: "PY",
693
+ },
694
+ {
695
+ label: "Peru",
696
+ value: "PE",
697
+ },
698
+ {
699
+ label: "Philippines",
700
+ value: "PH",
701
+ },
702
+ {
703
+ label: "Pitcairn",
704
+ value: "PN",
705
+ },
706
+ {
707
+ label: "Poland",
708
+ value: "PL",
709
+ },
710
+ {
711
+ label: "Portugal",
712
+ value: "PT",
713
+ },
714
+ {
715
+ label: "Puerto Rico",
716
+ value: "PR",
717
+ },
718
+ {
719
+ label: "Qatar",
720
+ value: "QA",
721
+ },
722
+ {
723
+ label: "Reunion",
724
+ value: "RE",
725
+ },
726
+ {
727
+ label: "Romania",
728
+ value: "RO",
729
+ },
730
+ {
731
+ label: "Russian Federation",
732
+ value: "RU",
733
+ },
734
+ {
735
+ label: "Rwanda",
736
+ value: "RW",
737
+ },
738
+ {
739
+ label: "Saint Helena",
740
+ value: "SH",
741
+ },
742
+ {
743
+ label: "Saint Kitts and Nevis",
744
+ value: "KN",
745
+ },
746
+ {
747
+ label: "Saint Lucia",
748
+ value: "LC",
749
+ },
750
+ {
751
+ label: "Saint Pierre and Miquelon",
752
+ value: "PM",
753
+ },
754
+ {
755
+ label: "Saint Vincent and the Grenadines",
756
+ value: "VC",
757
+ },
758
+ {
759
+ label: "Samoa",
760
+ value: "WS",
761
+ },
762
+ {
763
+ label: "San Marino",
764
+ value: "SM",
765
+ },
766
+ {
767
+ label: "Sao Tome and Principe",
768
+ value: "ST",
769
+ },
770
+ {
771
+ label: "Saudi Arabia",
772
+ value: "SA",
773
+ },
774
+ {
775
+ label: "Senegal",
776
+ value: "SN",
777
+ },
778
+ {
779
+ label: "Serbia",
780
+ value: "RS",
781
+ },
782
+ {
783
+ label: "Seychelles",
784
+ value: "SC",
785
+ },
786
+ {
787
+ label: "Sierra Leone",
788
+ value: "SL",
789
+ },
790
+ {
791
+ label: "Singapore",
792
+ value: "SG",
793
+ },
794
+ {
795
+ label: "Slovakia",
796
+ value: "SK",
797
+ },
798
+ {
799
+ label: "Slovenia",
800
+ value: "SI",
801
+ },
802
+ {
803
+ label: "Solomon Islands",
804
+ value: "SB",
805
+ },
806
+ {
807
+ label: "Somalia",
808
+ value: "SO",
809
+ },
810
+ {
811
+ label: "South Africa",
812
+ value: "ZA",
813
+ },
814
+ {
815
+ label: "South Georgia and the South Sandwich Islands",
816
+ value: "GS",
817
+ },
818
+ {
819
+ label: "Spain",
820
+ value: "ES",
821
+ },
822
+ {
823
+ label: "Sri Lanka",
824
+ value: "LK",
825
+ },
826
+ {
827
+ label: "Sudan",
828
+ value: "SD",
829
+ },
830
+ {
831
+ label: "Suriname",
832
+ value: "SR",
833
+ },
834
+ {
835
+ label: "Svalbard and Jan Mayen",
836
+ value: "SJ",
837
+ },
838
+ {
839
+ label: "Swaziland",
840
+ value: "SZ",
841
+ },
842
+ {
843
+ label: "Sweden",
844
+ value: "SE",
845
+ },
846
+ {
847
+ label: "Switzerland",
848
+ value: "CH",
849
+ },
850
+ {
851
+ label: "Syrian Arab Republic",
852
+ value: "SY",
853
+ },
854
+ {
855
+ label: "Taiwan",
856
+ value: "TW",
857
+ },
858
+ {
859
+ label: "Tajikistan",
860
+ value: "TJ",
861
+ },
862
+ {
863
+ label: "Tanzania, United Republic of",
864
+ value: "TZ",
865
+ },
866
+ {
867
+ label: "Thailand",
868
+ value: "TH",
869
+ },
870
+ {
871
+ label: "Timor-Leste",
872
+ value: "TL",
873
+ },
874
+ {
875
+ label: "Togo",
876
+ value: "TG",
877
+ },
878
+ {
879
+ label: "Tokelau",
880
+ value: "TK",
881
+ },
882
+ {
883
+ label: "Tonga",
884
+ value: "TO",
885
+ },
886
+ {
887
+ label: "Trinidad and Tobago",
888
+ value: "TT",
889
+ },
890
+ {
891
+ label: "Tunisia",
892
+ value: "TN",
893
+ },
894
+ {
895
+ label: "Turkey",
896
+ value: "TR",
897
+ },
898
+ {
899
+ label: "Turkmenistan",
900
+ value: "TM",
901
+ },
902
+ {
903
+ label: "Turks and Caicos Islands",
904
+ value: "TC",
905
+ },
906
+ {
907
+ label: "Tuvalu",
908
+ value: "TV",
909
+ },
910
+ {
911
+ label: "Uganda",
912
+ value: "UG",
913
+ },
914
+ {
915
+ label: "Ukraine",
916
+ value: "UA",
917
+ },
918
+ {
919
+ label: "United Arab Emirates",
920
+ value: "AE",
921
+ },
922
+ {
923
+ label: "United Kingdom",
924
+ value: "GB",
925
+ },
926
+ {
927
+ label: "United States",
928
+ value: "US",
929
+ },
930
+ {
931
+ label: "United States Minor Outlying Islands",
932
+ value: "UM",
933
+ },
934
+ {
935
+ label: "Uruguay",
936
+ value: "UY",
937
+ },
938
+ {
939
+ label: "Uzbekistan",
940
+ value: "UZ",
941
+ },
942
+ {
943
+ label: "Vanuatu",
944
+ value: "VU",
945
+ },
946
+ {
947
+ label: "Venezuela",
948
+ value: "VE",
949
+ },
950
+ {
951
+ label: "Viet Nam",
952
+ value: "VN",
953
+ },
954
+ {
955
+ label: "Virgin Islands, British",
956
+ value: "VG",
957
+ },
958
+ {
959
+ label: "Virgin Islands, U.S.",
960
+ value: "VI",
961
+ },
962
+ {
963
+ label: "Wallis and Futuna",
964
+ value: "WF",
965
+ },
966
+ {
967
+ label: "Western Sahara",
968
+ value: "EH",
969
+ },
970
+ {
971
+ label: "Yemen",
972
+ value: "YE",
973
+ },
974
+ {
975
+ label: "Zambia",
976
+ value: "ZM",
977
+ },
978
+ {
979
+ label: "Zimbabwe",
980
+ value: "ZW",
981
+ },
982
+ ]