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, Grid, GridItem, Countdown, Image, } from "@sc/plugins/webcomponents/v2"; import { CountDownTypes } from "@sc/plugins/webcomponents/v2/Countdown/types"; 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 (
Registration Closes In...

Need Help?
Call Us at 1-888-555-1212
...or email support

); }; export default Layout;