import BlocksContext from '../BlocksContext'; import ErrorCard from '../ErrorCard'; import featured from './featured.png'; import stagblocks from './stagblocks.png'; const { Fragment } = wp.element; const { __ } = wp.i18n; const slugify = ( text ) => { return text.toString().toLowerCase() .replace( /\s+/g, '-' ) // Replace spaces with - .replace( /[^\w\-]+/g, '' ) // Remove all non-word chars .replace( /\-\-+/g, '-' ) // Replace multiple - with single - .replace( /^-+/, '' ) // Trim - from start of text .replace( /-+$/, '' ); // Trim - from end of text }; const Dashboard = () => (

{ __( 'A warm ' ) }

{ __( 'Start by' ) }

Gutenberg

{ __( 'Getting started with Gutenberg' ) }

{ __( 'Watch this quick intro video tutorial on Gutenberg Editor to get started on building pages with blocks.' ) }

{ __( 'Read Tutorials & Documentation Pages' ) }

advanced Blocks

{ __( 'Making Gutenberg Block Editor a more premium experience with advanced Blocks' ) }

{ __( 'Watch this quick intro video tutorial to get started on building pages with blocks. ' ) }

{ __( 'Read Documentation & Articles' ) }

{ __( 'A Quick Intro to Blocks that come with advanced Blocks' ) }

{ __( 'Take a look at all of our blocks and see them in live action.' ) }

); export default Dashboard;