import * as React from "react"; import { get } from "lodash"; 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, GridItem, Grid, } from "@sc/plugins/webcomponents/v2"; 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 (
Do You Make These Mistakes In Your Business? It's true. Getting results is much easier than you think. The truth is most people simply don't know the correct steps to take so they become frustrated and quit Headline The FOUR tried and true secrets to the having your best year yet! Headline How Search Engines Work Headline The FIVE Essential Sales Techniques for mastering your
); }; export default Layout;