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, ListItem, List, } 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 (
High fidelity wireframes The navigation design should communciate the relationship the links it contains so that users High fidelity wireframes include more real content, specific typography choices, and information on image dimensions. Unlike low fidelity wireframes, high fidelity wireframes can include actual images. Color choices are not included, but different values in color can be represented in grayscale.

High fidelity wireframes include more real content, specific typography choices, and information on image
); }; export default Layout;