create-plasmic-app 0.0.150 → 0.0.152

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 (151) hide show
  1. package/cpa-out/.gitignore +4 -2
  2. package/cpa-out/gatsby-codegen-js/package.json +2 -2
  3. package/cpa-out/gatsby-codegen-js/plasmic.json +2 -2
  4. package/cpa-out/gatsby-codegen-js/src/components/plasmic/create_plasmic_app/PlasmicButton.module.css +468 -0
  5. package/cpa-out/gatsby-codegen-js/src/components/plasmic/create_plasmic_app/PlasmicDynamicPage.jsx +61 -26
  6. package/cpa-out/gatsby-codegen-js/src/components/plasmic/create_plasmic_app/PlasmicDynamicPage.module.css +44 -0
  7. package/cpa-out/gatsby-codegen-js/src/components/plasmic/create_plasmic_app/PlasmicHomepage.jsx +6 -39
  8. package/cpa-out/gatsby-codegen-js/src/components/plasmic/create_plasmic_app/PlasmicHomepage.module.css +43 -0
  9. package/cpa-out/gatsby-codegen-js/src/components/plasmic/create_plasmic_app/PlasmicRandomDynamicPageButton.module.css +16 -0
  10. package/cpa-out/gatsby-codegen-js/src/components/plasmic/create_plasmic_app/plasmic.module.css +702 -0
  11. package/cpa-out/gatsby-codegen-js/src/components/plasmic/plasmic__default_style.module.css +363 -0
  12. package/cpa-out/gatsby-codegen-ts/package.json +2 -2
  13. package/cpa-out/gatsby-codegen-ts/plasmic.json +2 -2
  14. package/cpa-out/gatsby-codegen-ts/src/components/RandomDynamicPageButton.tsx +1 -2
  15. package/cpa-out/gatsby-codegen-ts/src/components/plasmic/create_plasmic_app/PlasmicButton.module.css +468 -0
  16. package/cpa-out/gatsby-codegen-ts/src/components/plasmic/create_plasmic_app/PlasmicDynamicPage.module.css +44 -0
  17. package/cpa-out/gatsby-codegen-ts/src/components/plasmic/create_plasmic_app/PlasmicDynamicPage.tsx +74 -28
  18. package/cpa-out/gatsby-codegen-ts/src/components/plasmic/create_plasmic_app/PlasmicHomepage.module.css +43 -0
  19. package/cpa-out/gatsby-codegen-ts/src/components/plasmic/create_plasmic_app/PlasmicHomepage.tsx +6 -40
  20. package/cpa-out/gatsby-codegen-ts/src/components/plasmic/create_plasmic_app/PlasmicRandomDynamicPageButton.module.css +16 -0
  21. package/cpa-out/gatsby-codegen-ts/src/components/plasmic/create_plasmic_app/plasmic.module.css +702 -0
  22. package/cpa-out/gatsby-codegen-ts/src/components/plasmic/plasmic__default_style.module.css +363 -0
  23. package/cpa-out/gatsby-loader-js/package.json +1 -1
  24. package/cpa-out/gatsby-loader-js/src/templates/defaultPlasmicPage.jsx +1 -0
  25. package/cpa-out/gatsby-loader-ts/package.json +1 -1
  26. package/cpa-out/gatsby-loader-ts/src/templates/defaultPlasmicPage.tsx +1 -0
  27. package/cpa-out/nextjs-app-codegen-js/app/dynamic/[slug]/page.jsx +13 -3
  28. package/cpa-out/nextjs-app-codegen-js/app/globals.css +10 -0
  29. package/cpa-out/nextjs-app-codegen-js/components/plasmic/create_plasmic_app/PlasmicButton.module.css +468 -0
  30. package/cpa-out/nextjs-app-codegen-js/components/plasmic/create_plasmic_app/PlasmicDynamicPage.jsx +62 -27
  31. package/cpa-out/nextjs-app-codegen-js/components/plasmic/create_plasmic_app/PlasmicDynamicPage.module.css +44 -0
  32. package/cpa-out/nextjs-app-codegen-js/components/plasmic/create_plasmic_app/PlasmicDynamicPageServer.jsx +103 -2
  33. package/cpa-out/nextjs-app-codegen-js/components/plasmic/create_plasmic_app/PlasmicHomepage.jsx +6 -39
  34. package/cpa-out/nextjs-app-codegen-js/components/plasmic/create_plasmic_app/PlasmicHomepage.module.css +43 -0
  35. package/cpa-out/nextjs-app-codegen-js/components/plasmic/create_plasmic_app/PlasmicRandomDynamicPageButton.module.css +16 -0
  36. package/cpa-out/nextjs-app-codegen-js/components/plasmic/create_plasmic_app/plasmic.module.css +702 -0
  37. package/cpa-out/nextjs-app-codegen-js/components/plasmic/plasmic__default_style.module.css +363 -0
  38. package/cpa-out/nextjs-app-codegen-js/eslint.config.mjs +16 -0
  39. package/cpa-out/nextjs-app-codegen-js/jsconfig.json +7 -0
  40. package/cpa-out/nextjs-app-codegen-js/package.json +4 -4
  41. package/cpa-out/nextjs-app-codegen-js/plasmic.json +2 -2
  42. package/cpa-out/nextjs-app-codegen-ts/app/dynamic/[slug]/page.tsx +13 -3
  43. package/cpa-out/nextjs-app-codegen-ts/app/globals.css +10 -0
  44. package/cpa-out/nextjs-app-codegen-ts/components/RandomDynamicPageButton.tsx +1 -2
  45. package/cpa-out/nextjs-app-codegen-ts/components/plasmic/create_plasmic_app/PlasmicButton.module.css +468 -0
  46. package/cpa-out/nextjs-app-codegen-ts/components/plasmic/create_plasmic_app/PlasmicDynamicPage.module.css +44 -0
  47. package/cpa-out/nextjs-app-codegen-ts/components/plasmic/create_plasmic_app/PlasmicDynamicPage.tsx +69 -29
  48. package/cpa-out/nextjs-app-codegen-ts/components/plasmic/create_plasmic_app/PlasmicDynamicPageServer.tsx +110 -2
  49. package/cpa-out/nextjs-app-codegen-ts/components/plasmic/create_plasmic_app/PlasmicHomepage.module.css +43 -0
  50. package/cpa-out/nextjs-app-codegen-ts/components/plasmic/create_plasmic_app/PlasmicHomepage.tsx +6 -40
  51. package/cpa-out/nextjs-app-codegen-ts/components/plasmic/create_plasmic_app/PlasmicRandomDynamicPageButton.module.css +16 -0
  52. package/cpa-out/nextjs-app-codegen-ts/components/plasmic/create_plasmic_app/plasmic.module.css +702 -0
  53. package/cpa-out/nextjs-app-codegen-ts/components/plasmic/plasmic__default_style.module.css +363 -0
  54. package/cpa-out/nextjs-app-codegen-ts/eslint.config.mjs +18 -0
  55. package/cpa-out/nextjs-app-codegen-ts/package.json +4 -4
  56. package/cpa-out/nextjs-app-codegen-ts/plasmic.json +2 -2
  57. package/cpa-out/nextjs-app-loader-js/app/[[...catchall]]/page.jsx +1 -0
  58. package/cpa-out/nextjs-app-loader-js/app/globals.css +10 -0
  59. package/cpa-out/nextjs-app-loader-js/eslint.config.mjs +16 -0
  60. package/cpa-out/nextjs-app-loader-js/jsconfig.json +7 -0
  61. package/cpa-out/nextjs-app-loader-js/package.json +3 -3
  62. package/cpa-out/nextjs-app-loader-ts/app/[[...catchall]]/page.tsx +1 -0
  63. package/cpa-out/nextjs-app-loader-ts/app/globals.css +10 -0
  64. package/cpa-out/nextjs-app-loader-ts/eslint.config.mjs +18 -0
  65. package/cpa-out/nextjs-app-loader-ts/package.json +3 -3
  66. package/cpa-out/nextjs-pages-codegen-js/components/plasmic/create_plasmic_app/PlasmicButton.module.css +468 -0
  67. package/cpa-out/nextjs-pages-codegen-js/components/plasmic/create_plasmic_app/PlasmicDynamicPage.jsx +62 -27
  68. package/cpa-out/nextjs-pages-codegen-js/components/plasmic/create_plasmic_app/PlasmicDynamicPage.module.css +44 -0
  69. package/cpa-out/nextjs-pages-codegen-js/components/plasmic/create_plasmic_app/PlasmicHomepage.jsx +6 -39
  70. package/cpa-out/nextjs-pages-codegen-js/components/plasmic/create_plasmic_app/PlasmicHomepage.module.css +43 -0
  71. package/cpa-out/nextjs-pages-codegen-js/components/plasmic/create_plasmic_app/PlasmicRandomDynamicPageButton.module.css +16 -0
  72. package/cpa-out/nextjs-pages-codegen-js/components/plasmic/create_plasmic_app/plasmic.module.css +702 -0
  73. package/cpa-out/nextjs-pages-codegen-js/components/plasmic/plasmic__default_style.module.css +363 -0
  74. package/cpa-out/nextjs-pages-codegen-js/eslint.config.mjs +16 -0
  75. package/cpa-out/nextjs-pages-codegen-js/jsconfig.json +7 -0
  76. package/cpa-out/nextjs-pages-codegen-js/package.json +4 -4
  77. package/cpa-out/nextjs-pages-codegen-js/pages/dynamic/[slug].jsx +24 -2
  78. package/cpa-out/nextjs-pages-codegen-js/plasmic.json +2 -2
  79. package/cpa-out/nextjs-pages-codegen-js/styles/Home.module.css +141 -0
  80. package/cpa-out/nextjs-pages-codegen-js/styles/globals.css +10 -0
  81. package/cpa-out/nextjs-pages-codegen-ts/components/RandomDynamicPageButton.tsx +1 -2
  82. package/cpa-out/nextjs-pages-codegen-ts/components/plasmic/create_plasmic_app/PlasmicButton.module.css +468 -0
  83. package/cpa-out/nextjs-pages-codegen-ts/components/plasmic/create_plasmic_app/PlasmicDynamicPage.module.css +44 -0
  84. package/cpa-out/nextjs-pages-codegen-ts/components/plasmic/create_plasmic_app/PlasmicDynamicPage.tsx +75 -29
  85. package/cpa-out/nextjs-pages-codegen-ts/components/plasmic/create_plasmic_app/PlasmicHomepage.module.css +43 -0
  86. package/cpa-out/nextjs-pages-codegen-ts/components/plasmic/create_plasmic_app/PlasmicHomepage.tsx +6 -40
  87. package/cpa-out/nextjs-pages-codegen-ts/components/plasmic/create_plasmic_app/PlasmicRandomDynamicPageButton.module.css +16 -0
  88. package/cpa-out/nextjs-pages-codegen-ts/components/plasmic/create_plasmic_app/plasmic.module.css +702 -0
  89. package/cpa-out/nextjs-pages-codegen-ts/components/plasmic/plasmic__default_style.module.css +363 -0
  90. package/cpa-out/nextjs-pages-codegen-ts/eslint.config.mjs +18 -0
  91. package/cpa-out/nextjs-pages-codegen-ts/package.json +4 -4
  92. package/cpa-out/nextjs-pages-codegen-ts/pages/dynamic/[slug].tsx +25 -2
  93. package/cpa-out/nextjs-pages-codegen-ts/plasmic.json +2 -2
  94. package/cpa-out/nextjs-pages-codegen-ts/styles/Home.module.css +141 -0
  95. package/cpa-out/nextjs-pages-codegen-ts/styles/globals.css +10 -0
  96. package/cpa-out/nextjs-pages-loader-js/eslint.config.mjs +16 -0
  97. package/cpa-out/nextjs-pages-loader-js/jsconfig.json +7 -0
  98. package/cpa-out/nextjs-pages-loader-js/package.json +3 -3
  99. package/cpa-out/nextjs-pages-loader-js/pages/[[...catchall]].jsx +1 -0
  100. package/cpa-out/nextjs-pages-loader-js/styles/Home.module.css +141 -0
  101. package/cpa-out/nextjs-pages-loader-js/styles/globals.css +10 -0
  102. package/cpa-out/nextjs-pages-loader-ts/eslint.config.mjs +18 -0
  103. package/cpa-out/nextjs-pages-loader-ts/package.json +3 -3
  104. package/cpa-out/nextjs-pages-loader-ts/pages/[[...catchall]].tsx +1 -0
  105. package/cpa-out/nextjs-pages-loader-ts/styles/Home.module.css +141 -0
  106. package/cpa-out/nextjs-pages-loader-ts/styles/globals.css +10 -0
  107. package/cpa-out/react-codegen-js/package.json +2 -2
  108. package/cpa-out/react-codegen-js/plasmic.json +2 -2
  109. package/cpa-out/react-codegen-js/src/components/plasmic/create_plasmic_app/PlasmicButton.module.css +468 -0
  110. package/cpa-out/react-codegen-js/src/components/plasmic/create_plasmic_app/PlasmicDynamicPage.jsx +61 -26
  111. package/cpa-out/react-codegen-js/src/components/plasmic/create_plasmic_app/PlasmicDynamicPage.module.css +44 -0
  112. package/cpa-out/react-codegen-js/src/components/plasmic/create_plasmic_app/PlasmicHomepage.jsx +6 -39
  113. package/cpa-out/react-codegen-js/src/components/plasmic/create_plasmic_app/PlasmicHomepage.module.css +43 -0
  114. package/cpa-out/react-codegen-js/src/components/plasmic/create_plasmic_app/PlasmicRandomDynamicPageButton.module.css +16 -0
  115. package/cpa-out/react-codegen-js/src/components/plasmic/create_plasmic_app/plasmic.module.css +702 -0
  116. package/cpa-out/react-codegen-js/src/components/plasmic/plasmic__default_style.module.css +363 -0
  117. package/cpa-out/react-codegen-js/src/index.css +68 -0
  118. package/cpa-out/react-codegen-ts/package.json +2 -2
  119. package/cpa-out/react-codegen-ts/plasmic.json +2 -2
  120. package/cpa-out/react-codegen-ts/src/components/RandomDynamicPageButton.tsx +1 -2
  121. package/cpa-out/react-codegen-ts/src/components/plasmic/create_plasmic_app/PlasmicButton.module.css +468 -0
  122. package/cpa-out/react-codegen-ts/src/components/plasmic/create_plasmic_app/PlasmicDynamicPage.module.css +44 -0
  123. package/cpa-out/react-codegen-ts/src/components/plasmic/create_plasmic_app/PlasmicDynamicPage.tsx +74 -28
  124. package/cpa-out/react-codegen-ts/src/components/plasmic/create_plasmic_app/PlasmicHomepage.module.css +43 -0
  125. package/cpa-out/react-codegen-ts/src/components/plasmic/create_plasmic_app/PlasmicHomepage.tsx +6 -40
  126. package/cpa-out/react-codegen-ts/src/components/plasmic/create_plasmic_app/PlasmicRandomDynamicPageButton.module.css +16 -0
  127. package/cpa-out/react-codegen-ts/src/components/plasmic/create_plasmic_app/plasmic.module.css +702 -0
  128. package/cpa-out/react-codegen-ts/src/components/plasmic/plasmic__default_style.module.css +363 -0
  129. package/cpa-out/react-codegen-ts/src/index.css +68 -0
  130. package/cpa-out/tanstack-codegen-ts/package.json +3 -3
  131. package/cpa-out/tanstack-codegen-ts/plasmic.json +2 -2
  132. package/cpa-out/tanstack-codegen-ts/src/components/RandomDynamicPageButton.tsx +1 -2
  133. package/cpa-out/tanstack-codegen-ts/src/components/plasmic/create_plasmic_app/PlasmicButton.css +495 -0
  134. package/cpa-out/tanstack-codegen-ts/src/components/plasmic/create_plasmic_app/PlasmicDynamicPage.css +44 -0
  135. package/cpa-out/tanstack-codegen-ts/src/components/plasmic/create_plasmic_app/PlasmicDynamicPage.tsx +74 -28
  136. package/cpa-out/tanstack-codegen-ts/src/components/plasmic/create_plasmic_app/PlasmicHomepage.css +43 -0
  137. package/cpa-out/tanstack-codegen-ts/src/components/plasmic/create_plasmic_app/PlasmicHomepage.tsx +6 -40
  138. package/cpa-out/tanstack-codegen-ts/src/components/plasmic/create_plasmic_app/PlasmicRandomDynamicPageButton.css +16 -0
  139. package/cpa-out/tanstack-codegen-ts/src/components/plasmic/create_plasmic_app/plasmic.css +354 -0
  140. package/cpa-out/tanstack-codegen-ts/src/components/plasmic/plasmic__default_style.css +363 -0
  141. package/cpa-out/tanstack-codegen-ts/src/routes/dynamic/$slug/index.tsx +31 -8
  142. package/cpa-out/tanstack-codegen-ts/src/styles.css +17 -0
  143. package/dist/gatsby/template.js +1 -0
  144. package/dist/nextjs/nextjs.js +30 -0
  145. package/dist/nextjs/templates/app-loader/catchall-page.js +1 -0
  146. package/dist/nextjs/templates/pages-loader/catchall-page.js +1 -0
  147. package/package.json +2 -2
  148. package/src/gatsby/template.ts +1 -0
  149. package/src/nextjs/nextjs.ts +34 -1
  150. package/src/nextjs/templates/app-loader/catchall-page.ts +1 -0
  151. package/src/nextjs/templates/pages-loader/catchall-page.ts +1 -0
@@ -9,6 +9,8 @@ import * as React from "react";
9
9
  import { ClientDynamicPage } from "../../../app/dynamic/[slug]/page-client"; // plasmic-import: AO44A-w7hh/rscClient
10
10
 
11
11
  const $$ = {};
12
+ import { unstable_executePlasmicQueries } from "@plasmicapp/react-web/lib/data-sources";
13
+ import { PlasmicQueryDataProvider } from "@plasmicapp/react-web/lib/query";
12
14
 
13
15
  export function generateDynamicMetadata($q, $ctx) {
14
16
  return {
@@ -19,6 +21,95 @@ export function generateDynamicMetadata($q, $ctx) {
19
21
  };
20
22
  }
21
23
 
24
+ export const serverQueryTree = {
25
+ type: "component",
26
+ queries: {
27
+ sha256: {
28
+ id: "custom:krgWtF9Kkesx",
29
+ fn: async ({ $q, $props, $ctx, $state }) => {
30
+ console.log("Running SHA-256");
31
+ const data = new TextEncoder().encode($ctx.params.slug);
32
+ const hash = await crypto.subtle.digest("SHA-256", data);
33
+ return [...new Uint8Array(hash)]
34
+ .map(b => b.toString(16).padStart(2, "0"))
35
+ .join("-");
36
+ },
37
+ args: ({ $q, $props, $ctx, $state }) => {
38
+ return [
39
+ {
40
+ $ctx: {
41
+ params: $ctx["params"]
42
+ },
43
+ $props: {},
44
+ $q: {},
45
+ $state: {}
46
+ }
47
+ ];
48
+ }
49
+ }
50
+ },
51
+ stateSpecs: [],
52
+ propsContext: {},
53
+ children: [
54
+ {
55
+ type: "component",
56
+ queries: {},
57
+ stateSpecs: [],
58
+ propsContext: {},
59
+ children: [
60
+ {
61
+ type: "component",
62
+ queries: {},
63
+ stateSpecs: [
64
+ {
65
+ path: "showStartIcon",
66
+ type: "private",
67
+ variableType: "variant",
68
+ initFunc: ({ $props, $state, $queries, $q, $ctx }) =>
69
+ $props.showStartIcon
70
+ },
71
+ {
72
+ path: "showEndIcon",
73
+ type: "private",
74
+ variableType: "variant",
75
+ initFunc: ({ $props, $state, $queries, $q, $ctx }) =>
76
+ $props.showEndIcon
77
+ },
78
+ {
79
+ path: "isDisabled",
80
+ type: "private",
81
+ variableType: "variant",
82
+ initFunc: ({ $props, $state, $queries, $q, $ctx }) =>
83
+ $props.isDisabled
84
+ },
85
+ {
86
+ path: "shape",
87
+ type: "private",
88
+ variableType: "variant",
89
+ initFunc: ({ $props, $state, $queries, $q, $ctx }) => $props.shape
90
+ },
91
+ {
92
+ path: "size",
93
+ type: "private",
94
+ variableType: "variant",
95
+ initFunc: ({ $props, $state, $queries, $q, $ctx }) => $props.size
96
+ },
97
+ {
98
+ path: "color",
99
+ type: "private",
100
+ variableType: "variant",
101
+ initFunc: ({ $props, $state, $queries, $q, $ctx }) => $props.color
102
+ }
103
+ ],
104
+
105
+ propsContext: { submitsForm: ({ $q, $props, $ctx, $state }) => true },
106
+ children: []
107
+ }
108
+ ]
109
+ }
110
+ ]
111
+ };
112
+
22
113
  function mkPathFromRouteAndParams(route, params) {
23
114
  if (!params) {
24
115
  return route;
@@ -51,6 +142,16 @@ export async function makeAppRouterPageCtx({ params, searchParams }) {
51
142
  return ctx;
52
143
  }
53
144
 
54
- export function PlasmicDynamicPageServer(props) {
55
- return <ClientDynamicPage {...props} />;
145
+ export async function PlasmicDynamicPageServer(props) {
146
+ const { params, searchParams, ...rest } = props;
147
+ const ctx = await makeAppRouterPageCtx({ params, searchParams });
148
+ const { cache: prefetchedCache } = await unstable_executePlasmicQueries(
149
+ serverQueryTree,
150
+ { $props: rest, $ctx: ctx }
151
+ );
152
+ return (
153
+ <PlasmicQueryDataProvider prefetchedCache={prefetchedCache}>
154
+ <ClientDynamicPage {...rest} />
155
+ </PlasmicQueryDataProvider>
156
+ );
56
157
  }
@@ -124,7 +124,9 @@ function PlasmicHomepage__RenderFunc(props) {
124
124
  sty.h1
125
125
  )}
126
126
  >
127
- {"create-plasmic-app"}
127
+ {hasVariant(globalVariants, "screen", "desktopOnly")
128
+ ? "create-plasmic-app"
129
+ : "cpa"}
128
130
  </h1>
129
131
  <div
130
132
  data-plasmic-name={"text"}
@@ -135,44 +137,9 @@ function PlasmicHomepage__RenderFunc(props) {
135
137
  sty.text
136
138
  )}
137
139
  >
138
- {hasVariant(globalVariants, "screen", "desktopOnly") ? (
139
- <React.Fragment>
140
- <React.Fragment>
141
- {
142
- "This project is used by run-cpa.ts in the create-plasmic-app repo.\n\nrun-cpa.ts runs create-plasmic-app for many combinations of args (e.g. nextjs + appDir + loader + typescript) to check for changes in generated files. Any changes to this project will result in lots of changes to the generated files. "
143
- }
144
- </React.Fragment>
145
- <span
146
- className={
147
- "plasmic_default__all plasmic_default__span plasmic_default__span__47tFX"
148
- }
149
- style={{ fontWeight: 700 }}
150
- >
151
- {"Therefore, please avoid changing this project."}
152
- </span>
153
- </React.Fragment>
154
- ) : (
155
- <React.Fragment>
156
- <React.Fragment>
157
- {
158
- "If you haven't already done so, go back and learn the basics by going through the Plasmic Levels tutorial.\n\nIt's always easier to start from examples! Add a new page using a template\u2014do this from the list of pages in the top left (the gray + button).\n\nOr press the big blue + button to start dragging items into this page.\n\nIntegrate this project into your codebase\u2014press the "
159
- }
160
- </React.Fragment>
161
- <span
162
- className={
163
- "plasmic_default__all plasmic_default__span plasmic_default__span__47tFX"
164
- }
165
- style={{ fontWeight: 700 }}
166
- >
167
- {"Code"}
168
- </span>
169
- <React.Fragment>
170
- {
171
- " button in the top right and follow the quickstart instructions.\n\nJoin our Slack community (icon in bottom left) for help any time."
172
- }
173
- </React.Fragment>
174
- </React.Fragment>
175
- )}
140
+ {
141
+ "This project is used by run-cpa.ts in the create-plasmic-app repo.\n\n\nrun-cpa.ts runs create-plasmic-app for many combinations of args (e.g. nextjs + appDir + loader + typescript) to check for changes in generated files. Any changes to this project will result in lots of changes to the generated files. Therefore, please avoid changing this project.\n"
142
+ }
176
143
  </div>
177
144
  <RandomDynamicPageButton
178
145
  data-plasmic-name={"randomDynamicPageButton"}
@@ -0,0 +1,43 @@
1
+ .root {
2
+ display: flex;
3
+ position: relative;
4
+ width: 100%;
5
+ height: 100%;
6
+ flex-direction: column;
7
+ justify-content: flex-start;
8
+ align-items: center;
9
+ min-width: 0;
10
+ min-height: 0;
11
+ padding: 0px;
12
+ }
13
+ .section {
14
+ display: flex;
15
+ position: relative;
16
+ flex-direction: column;
17
+ align-items: center;
18
+ justify-content: flex-start;
19
+ width: 100%;
20
+ height: auto;
21
+ max-width: 100%;
22
+ row-gap: 16px;
23
+ min-width: 0;
24
+ padding: 96px 24px;
25
+ }
26
+ .h1 {
27
+ position: relative;
28
+ max-width: 800px;
29
+ height: auto;
30
+ width: 100%;
31
+ min-width: 0;
32
+ }
33
+ .text {
34
+ position: relative;
35
+ max-width: 800px;
36
+ height: auto;
37
+ width: 100%;
38
+ min-width: 0;
39
+ }
40
+ .randomDynamicPageButton:global(.__wab_instance):global(.__wab_instance) {
41
+ max-width: 100%;
42
+ position: relative;
43
+ }
@@ -0,0 +1,16 @@
1
+ .root:global(.__wab_instance) {
2
+ max-width: 100%;
3
+ position: relative;
4
+ }
5
+ .svg__p2Hdu {
6
+ position: relative;
7
+ object-fit: cover;
8
+ width: auto;
9
+ height: 1em;
10
+ }
11
+ .svg__jkBz {
12
+ position: relative;
13
+ object-fit: cover;
14
+ width: auto;
15
+ height: 1em;
16
+ }