@local-civics/mgmt-ui 0.1.75 → 0.1.76
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.
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2725,7 +2725,15 @@ const TrialRegistration = (props) => {
|
|
|
2725
2725
|
const [firstName, setFirstName] = React__namespace.useState("");
|
|
2726
2726
|
const [lastName, setLastName] = React__namespace.useState("");
|
|
2727
2727
|
const [interests, setInterests] = React__namespace.useState({});
|
|
2728
|
-
return /* @__PURE__ */ React__namespace.createElement("div", { className: classes.wrapper }, /* @__PURE__ */ React__namespace.createElement(core.SimpleGrid, { maw: 960, ml: "auto", mr: "auto", cols: 1, spacing: 15, breakpoints: [{ maxWidth: "sm", cols: 1 }] }, /* @__PURE__ */ React__namespace.createElement(
|
|
2728
|
+
return /* @__PURE__ */ React__namespace.createElement("div", { className: classes.wrapper }, /* @__PURE__ */ React__namespace.createElement(core.SimpleGrid, { maw: 960, ml: "auto", mr: "auto", cols: 1, spacing: 15, breakpoints: [{ maxWidth: "sm", cols: 1 }] }, /* @__PURE__ */ React__namespace.createElement(core.Group, { spacing: "sm" }, /* @__PURE__ */ React__namespace.createElement(
|
|
2729
|
+
core.Image,
|
|
2730
|
+
{
|
|
2731
|
+
height: 100,
|
|
2732
|
+
width: "auto",
|
|
2733
|
+
fit: "contain",
|
|
2734
|
+
src: "https://cdn.localcivics.io/brand/l.png"
|
|
2735
|
+
}
|
|
2736
|
+
), /* @__PURE__ */ React__namespace.createElement("div", null, /* @__PURE__ */ React__namespace.createElement(core.Title, { className: classes.title }, "Trial Educator"), /* @__PURE__ */ React__namespace.createElement(core.Text, { className: classes.description, mt: "sm" }, "Try out a few of the features we can bring to your classroom. No commitment required."))), /* @__PURE__ */ React__namespace.createElement("div", { className: classes.form }, /* @__PURE__ */ React__namespace.createElement(core.Group, { mb: "md", spacing: "md", grow: true }, /* @__PURE__ */ React__namespace.createElement(
|
|
2729
2737
|
core.TextInput,
|
|
2730
2738
|
{
|
|
2731
2739
|
label: "First Name",
|