import * as React from "react"; import { get } from "lodash"; // import WebFontLoader from "webfontloader"; import { style } from "./style"; import { default as defaultData } from "./data.json"; import { doIShow, combineData } from "../../utils"; import theme from "../../theme"; import { Block, Section, Headline, Text, Container, Button, Image, FormField, Grid, GridItem, Stacks, List, ListItem, } from "@sc/plugins/webcomponents/v2"; import { FormFieldTypes } from "@sc/modules/v2/CRUD/FormBuilder/types"; import { ComponentTypes } from "@sc/plugins/webcomponents/v2/types"; // WebFontLoader.load({ // google: { // families: ["Roboto:300,400,500,700", "Reenie+Beanie"], // }, // }); type LayoutProps = { data: any; }; const Layout: React.FC = ({ data }) => { const initialContent = { main_headline: { html: "Headline Goes Here", }, sub_headline: { html: "Sub Headline Text Content Goes Here", }, }; const content = combineData(initialContent, defaultData, data); return (
Yes Kyle! I'm Ready to Join 10 Minute Funnels Today! Please Read And Agree To The Following to Proceed: I am ready to reserve my seat RIGHT NOW before the limited seats are filled! Check this Box to Agree
); }; export default Layout;