import React from 'react'; import styled from 'styled-components'; import { Section, Container, Center, H2, H4 } from '../components/common'; const Code = styled.code` color: white !important; background: black; font-size: 14px; position: relative; &::before { content: '$'; position: absolute; left: -13px; color: gray; } `; const Terminal = styled.div` background: black; display: flex; flex-direction: column; border: 1px solid gray; border-bottom: none; border-top-left-radius: 10px; border-top-right-radius: 10px; padding: 50px 30px 30px 30px; width: 600px; max-width: 100%; position: relative; margin-bottom: 20px; &::before { content: '○ ○ ○'; color: gray; font-size: 14px; position: absolute; left: 15px; top: 5px; } `; const SubTitle = styled.h4` font-weight: 400; `; const Description = styled.div` width: 600px; max-width: 100%; `; export const Try = () => { return (

Give it a try

1. Run these commands git clone https://github.com/nodegui/nodegui-starter cd nodegui-starter npm install npm start 2.{' '} Learn the basics {' '} or dive deeper and take a{' '} look at the APIs.
); };