Skip to content

Instantly share code, notes, and snippets.

@jayfallon
Created July 18, 2019 19:51
Show Gist options
  • Save jayfallon/ed16562a50be76af3d43aa75d82cba68 to your computer and use it in GitHub Desktop.
Save jayfallon/ed16562a50be76af3d43aa75d82cba68 to your computer and use it in GitHub Desktop.
import Link from 'next/link'
import {GovUkTwoColumnContainer} from '../Global'
import GetStartedMenu from './menu'
import GetStartedStyles from './styles'
const Production = props => (
<GovUkTwoColumnContainer>
<GetStartedMenu/>
<GetStartedStyles>
<h2>Get started</h2>
<p>The examples in the GOV.UK Design System come with code to make it easy for you to use them in your project.</p>
<p>get started:</p>
<ul>
<li>
<Link href="/get-started/prototyping">
<a title="Get started: prototyping">prototyping</a>
</Link>
</li>
<li>
<Link href="/get-started/production">
<a title="Get started: production">in production</a>
</Link>
</li>
</ul>
<p>If you’ve used GOV.UK Elements, GOV.UK Template or the GOV.UK Frontend Toolkit before, you might also find it useful to read the guide on updating your code.</p>
</GetStartedStyles>
</GovUkTwoColumnContainer>
)
export default Production
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment