import { Box, Heading, Text, Strong, ContentBlock, TextLink, Stack, List, Divider, } from 'braid-design-system'; import * as styles from './NextSteps.css'; interface NextStepsProps { environment: 'development' | 'production'; } export function NextSteps({ environment }: NextStepsProps) { return ( πŸŽ‰ Congratulations! {'<%= data.appName %>'} has been successfully initialised. Current environment: {environment} 🧰 Features and Tooling The project comes pre-configured with a lot of standardised tooling to make authoring web applications easier. Platform The{' '} sku platform {' '} provides a number of tools to make development more efficient, for example,{' '} TypeScript , Jest,{' '} ESLint,{' '} and more. Components The project comes with{' '} Braid Design System {' '} β€” SEEK’s themeable component library. Translations The project comes with{' '} Vocab {' '} β€” SEEK’s strongly-typed internationalization framework for React. πŸƒβ€β™€οΈ Next steps Ensure you’re fully set up with these additional recommendations. Brand resources To align your project to SEEK’s brand standards it is recommended to install{' '} Shared web assets . Telemetry To help us improve sku, please install our private{' '} sku telemetry {' '} package that gives us insights on usage, errors and performance. πŸ™‹β€β™‚οΈ Support Whether it’s a problem or a feature request, please don’t hesitate to contact us via slack. Technical support For technical queries about the platform or the design system: #sku-support #braid-support Design support To discuss new or existing design patterns, visit{' '} #braid-design-support . πŸ“£ Announcements For keeping up to date with new features and bug fixes as they are released, it’s recommended to join and turn on notifications for the following channels: #front-end-tooling-announcements #braid-announcements ); }