Skip to content

Commit 927dbc7

Browse files
feat(web): add brew instructions to landing page (#108)
1 parent c9a7d80 commit 927dbc7

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

.github/workflows/deploy-pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ on:
55
branches:
66
- main
77
paths:
8-
- 'web/*'
8+
- 'web/**'
99
pull_request:
1010
branches:
1111
- main
1212
paths:
13-
- 'web/*'
13+
- 'web/**'
1414

1515
permissions:
1616
contents: read

web/src/app/globals.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ body {
4545
box-sizing: border-box;
4646
padding: 0;
4747
margin: 0;
48+
margin-bottom: 1%;
4849
}
4950

5051
a {

web/src/app/page.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,15 @@ export default function Home() {
5454

5555
<div className={styles.installation}>
5656
<h2>Installation</h2>
57+
<h3>Via Homebrew</h3>
58+
<div className={styles.codeBlockWrapper}>
59+
<pre className={styles.codeBlock}>
60+
<code>brew install claude-squad</code>
61+
</pre>
62+
<CopyButton textToCopy="brew install claude-squad" />
63+
</div>
64+
<br></br>
65+
<h3>Via Shell Script</h3>
5766
<div className={styles.codeBlockWrapper}>
5867
<pre className={styles.codeBlock}>
5968
<code>curl -fsSL https://raw.githubusercontent.com/stmg-ai/claude-squad/main/install.sh | bash</code>

0 commit comments

Comments
 (0)