> ## Documentation Index
> Fetch the complete documentation index at: https://docs.revolte.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

> Build your first change with Revolte in 5–10 minutes.

export default function QuickStartLayout() {
  return <div style={{
    color: '#f0f0f1',
    fontFamily: 'Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif',
    fontSize: '14px',
    lineHeight: '1.55',
    width: '100%',
    maxWidth: '100%',
    margin: 0,
    paddingTop: '4px'
  }}>
      <section style={{
    margin: '0 0 28px 0'
  }}>
        <h2 style={{
    margin: '0 0 10px 0',
    fontSize: '28px',
    fontWeight: '600',
    letterSpacing: '-0.035em',
    color: '#f0f0f1'
  }}>
          Build with Revolte
        </h2>
        <p style={{
    margin: 0,
    color: '#929397',
    fontSize: '16px',
    lineHeight: '1.6',
    maxWidth: '780px'
  }}>
          Revolte helps teams turn ideas and requirements into production-ready software. Choose the workflow that matches how you want to deliver.
        </p>
      </section>

      <section style={{
    display: 'grid',
    gridTemplateColumns: 'repeat(auto-fit, minmax(280px, 1fr))',
    gap: '12px'
  }}>
        <a href="/get-started/chat-workflow-1" style={{
    display: 'flex',
    flexDirection: 'column',
    textDecoration: 'none',
    borderRadius: '10px',
    border: '1px solid #36373d',
    background: '#111214',
    overflow: 'hidden'
  }}>
          <div style={{
    height: '150px',
    padding: '14px',
    background: '#22252b',
    position: 'relative',
    display: 'flex',
    alignItems: 'center',
    justifyContent: 'center'
  }}>
            <div style={{
    width: '84%',
    height: '126px',
    border: '1px solid rgba(255,255,255,0.75)',
    borderRadius: '10px',
    background: 'rgba(255,255,255,0.06)',
    padding: '12px',
    position: 'relative'
  }}>
              <div style={{
    display: 'flex',
    gap: '4px',
    marginBottom: '10px'
  }}>
                <i style={{
    width: '6px',
    height: '6px',
    borderRadius: '50%',
    background: 'rgba(255,255,255,0.7)',
    display: 'block'
  }}></i>
                <i style={{
    width: '6px',
    height: '6px',
    borderRadius: '50%',
    background: 'rgba(255,255,255,0.7)',
    display: 'block'
  }}></i>
                <i style={{
    width: '6px',
    height: '6px',
    borderRadius: '50%',
    background: 'rgba(255,255,255,0.7)',
    display: 'block'
  }}></i>
              </div>
              <div style={{
    padding: '8px 10px',
    border: '1px solid rgba(255,255,255,0.58)',
    borderRadius: '7px',
    background: 'rgba(255,255,255,0.16)',
    color: '#fff',
    fontSize: '11px'
  }}>Build a customer portal</div>
              <span style={{
    position: 'absolute',
    left: '14px',
    bottom: '10px',
    color: 'rgba(255,255,255,0.9)',
    fontSize: '10px',
    textTransform: 'uppercase',
    letterSpacing: '0.06em',
    fontWeight: '600'
  }}>✓ Production-ready scaffold</span>
            </div>
          </div>
          <div style={{
    padding: '18px 20px 20px'
  }}>
            <span style={{
    display: 'block',
    color: '#f0f0f1',
    fontSize: '18px',
    fontWeight: '500',
    letterSpacing: '-0.02em',
    lineHeight: '1.25',
    marginBottom: '6px'
  }}>Chat workflow</span>
            <span style={{
    color: '#a9aaaf',
    fontSize: '14px',
    lineHeight: '1.45'
  }}>From concept to production-ready software.</span>
          </div>
        </a>

        <a href="/workflows/your-first-Autonomous-workflow" style={{
    display: 'flex',
    flexDirection: 'column',
    textDecoration: 'none',
    borderRadius: '10px',
    border: '1px solid #36373d',
    background: '#111214',
    overflow: 'hidden'
  }}>
          <div style={{
    height: '150px',
    padding: '14px',
    background: '#22252b',
    position: 'relative',
    display: 'flex',
    alignItems: 'center',
    justifyContent: 'center'
  }}>
            <div style={{
    width: '84%',
    height: '126px',
    border: '1px solid rgba(255,255,255,0.75)',
    borderRadius: '10px',
    background: 'rgba(255,255,255,0.06)',
    padding: '12px',
    position: 'relative'
  }}>
              <div style={{
    color: '#f0f0f1',
    fontSize: '11px',
    marginBottom: '18px'
  }}>When Jira work item moves to In Progress</div>
              <div style={{
    padding: '10px',
    border: '1px solid rgba(255,255,255,0.72)',
    borderRadius: '7px',
    background: 'rgba(255,255,255,0.16)',
    color: '#fff',
    fontSize: '11px'
  }}>Autopilot · Plan · Build · Test</div>
              <span style={{
    position: 'absolute',
    right: '12px',
    bottom: '10px',
    color: 'rgba(255,255,255,0.9)',
    fontSize: '10px',
    fontWeight: '600'
  }}>Pull request ready</span>
            </div>
          </div>
          <div style={{
    padding: '18px 20px 20px'
  }}>
            <span style={{
    display: 'block',
    color: '#f0f0f1',
    fontSize: '18px',
    fontWeight: '500',
    letterSpacing: '-0.02em',
    lineHeight: '1.25',
    marginBottom: '6px'
  }}>Jira workflow</span>
            <span style={{
    color: '#a9aaaf',
    fontSize: '14px',
    lineHeight: '1.45'
  }}>Connect Jira and automate delivery from intake to pull request.</span>
          </div>
        </a>
      </section>
    </div>;
}

<QuickStartLayout />
