import React from 'react' import { Link, Image } from '@toptal/picasso' import { Layout } from '../../../core' import * as Documentation from '../../../documentation' import { CountriesList } from '../../components' import packageJson from '../../../../../package.json' const GIF_URL = 'https://media.giphy.com/media/Ln2dAW9oycjgmTpjX9/giphy.gif' const TOPTAL_HOW_TO_DOC_URL = 'https://toptal-core.atlassian.net/wiki/spaces/ENG/pages/1120831396/How+to+start+a+new+application' const TOPTAL_ARCHITECTURE_GUIDELINES_DOC_URL = 'https://toptal-core.atlassian.net/wiki/spaces/ENG/pages/1211334831/Frontend+Architecture+Guidelines' const TOPTAL_PICASSO_URL = 'https://picasso.toptal.net' export enum TestId { Image = 'image', } const WelcomePage = () => { return ( Let's get started Welcome to {packageJson.name} project {packageJson.description} What's next? Read how-to documentation Toptal has a plenty of recommendations for the new projects on setup.{' '} Check the docs. Learn Architecture Guidelines In order to share knowledge across different Toptal teams, there are recommendations provided for various aspects of frontend application development.{' '} Check them. Check Picasso docs Toptal uses the company component library -{' '} Picasso. Check the docs and start creating! ) } WelcomePage.displayName = 'WelcomePage' export default WelcomePage