Skip to content

Commit 374d0f4

Browse files
committed
Add links for keep awake apps
1 parent b0b14c7 commit 374d0f4

File tree

2 files changed

+31
-53
lines changed

2 files changed

+31
-53
lines changed

src/pages/LearnMore/LearnMore.tsx

Lines changed: 28 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ const LearnMore: React.FC = () => {
6161
}}>Claude Code Documentation</a> for installation instructions</code>
6262
</div>
6363
<p className="step-note">Follow the setup guide for your operating system</p>
64+
<p className="step-note">You should run the `claude` command for initial setup once installed</p>
6465
</div>
6566
</div>
6667

@@ -72,7 +73,7 @@ const LearnMore: React.FC = () => {
7273
account.</p>
7374
<div className="code-block">
7475
<code>npm install -g @commit451/salamander</code>
75-
<code>salamander auth login</code>
76+
<code>salamander</code>
7677
</div>
7778
<p className="step-note">Requires Node.js 18 or higher. Authentication opens a
7879
browser to complete setup.</p>
@@ -106,58 +107,35 @@ const LearnMore: React.FC = () => {
106107
<li>Receive push notifications</li>
107108
<li>View command outputs</li>
108109
</ul>
109-
<p className="step-note">Keep the runner running to maintain connectivity</p>
110110
</div>
111111
</div>
112-
</div>
113-
</div>
114-
</section>
115-
116-
<section className="features-detail">
117-
<div className="content-container">
118-
<h2>What You Can Do</h2>
119-
<div className="features-grid">
120-
<div className="feature-item">
121-
<h4>Code & Development</h4>
122-
<p>Run builds, execute tests, commit changes, and deploy applications - all from your
123-
phone.</p>
124-
</div>
125-
<div className="feature-item">
126-
<h4>File Management</h4>
127-
<p>Create, edit, move, and organize files and directories through natural language
128-
commands.</p>
129-
</div>
130-
<div className="feature-item">
131-
<h4>System Tasks</h4>
132-
<p>Monitor system resources, manage processes, and execute system administration
133-
tasks.</p>
134-
</div>
135-
<div className="feature-item">
136-
<h4>Custom Workflows</h4>
137-
<p>Set up automated workflows and let AI handle complex multi-step processes.</p>
138-
</div>
139-
</div>
140-
</div>
141-
</section>
142112

143-
<section className="troubleshooting">
144-
<div className="content-container">
145-
<h2>Troubleshooting</h2>
146-
<div className="faq-grid">
147-
<div className="faq-item">
148-
<h4>Connection Issues?</h4>
149-
<p>Ensure both devices are connected to the internet and you're logged into the same
150-
account on both the mobile app and CLI.</p>
151-
</div>
152-
<div className="faq-item">
153-
<h4>Commands Not Working?</h4>
154-
<p>Check that your runner is active and the CLI has the necessary permissions for the
155-
requested operations.</p>
156-
</div>
157-
<div className="faq-item">
158-
<h4>Need Help?</h4>
159-
<p>Visit our documentation or contact support through the mobile app for additional
160-
assistance.</p>
113+
<div className="step-card">
114+
<div className="step-number">6</div>
115+
<div className="step-content">
116+
<h3>Keep your machine awake</h3>
117+
<p>You will need to keep your machine from going to sleep.
118+
We recommend the following:</p>
119+
<ul className="feature-list">
120+
<li><a href="https://dlaa.me/Insomnia/" target="_blank" rel="noopener noreferrer" style={{
121+
color: 'var(--primary-color)',
122+
textDecoration: 'underline'
123+
}}>Insomnia</a> for Windows</li>
124+
<li><a href="https://www.caffeine-app.net/" target="_blank" rel="noopener noreferrer" style={{
125+
color: 'var(--primary-color)',
126+
textDecoration: 'underline'
127+
}}>Caffeine</a> for macOS</li>
128+
<li><a href="https://codeberg.org/WhyNotHugo/caffeine-ng" target="_blank" rel="noopener noreferrer" style={{
129+
color: 'var(--primary-color)',
130+
textDecoration: 'underline'
131+
}}>Caffeine-ng</a> for Linux</li>
132+
</ul>
133+
<p className="step-note">If these apps are not permitted, you can always get a <a
134+
href="https://a.co/d/cygzeFj" target="_blank" rel="noopener noreferrer" style={{
135+
color: 'var(--primary-color)',
136+
textDecoration: 'underline'
137+
}}>mouse mover</a></p>
138+
</div>
161139
</div>
162140
</div>
163141
</div>

src/pages/Welcome/Welcome.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@ const Welcome: React.FC = () => {
2323

2424
<div className="hero-images">
2525
<div className="hero-image-container">
26-
<img src="images/cli.png" alt="CLI Interface" className="hero-image hero-image-cli"/>
26+
<img src="images/chat.png" alt="Chat Interface" className="hero-image"/>
2727
</div>
2828
<div className="hero-arrow">
2929
<span className="arrow"></span>
3030
</div>
3131
<div className="hero-image-container">
32-
<img src="images/chat.png" alt="Chat Interface" className="hero-image"/>
32+
<img src="images/cli.png" alt="CLI Interface" className="hero-image hero-image-cli"/>
3333
</div>
3434
</div>
3535

3636
<div className="hero-actions">
3737
<button onClick={() => window.location.hash = 'learn-more'}
38-
className="btn btn-secondary">Learn More
38+
className="btn btn-secondary">Get Started
3939
</button>
4040
</div>
4141
</div>

0 commit comments

Comments
 (0)