Skip to content

Commit 11da438

Browse files
Lagojamikeland73
andauthored
Fix URLs for badges in Quickstart (#560)
## Summary Fixes URLs for badges in Quickstart ## How was it tested? Launchpad + Localhost --------- Co-authored-by: Mike Landau <mikeland86@gmail.com>
1 parent 42dba2d commit 11da438

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.github/workflows/cli-tests.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ concurrency:
77

88
on:
99
pull_request:
10-
paths-ignore:
11-
- 'docs/**'
1210
push:
1311
branches:
1412
- main

docs/app/docs/quickstart.mdx

+6-6
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,13 @@ We’ll create a new development environment with the packages we need. These pa
8686

8787
Once you publish your Devbox project to Github, you can help other developers get started by adding the Devbox Badge to your repo. Please copy the code snippets below and paste them into your README.md to add the badge
8888

89-
![Devbox Dark Badge](../static/img/shield_galaxy.svg)
89+
[![Built with Devbox](https://jetpack.io/img/devbox/shield_galaxy.svg)](https://jetpack.io/devbox/docs/contributor-quickstart/)
9090

9191
<Tabs>
9292
<TabItem value='md' label='Markdown'>
9393

9494
```md
95-
[![Built with Devbox](https://jetpack.io/devbox/img/shield_galaxy.svg)](https://jetpack.io/devbox/docs/contributor-quickstart/)
95+
[![Built with Devbox](https://jetpack.io/img/devbox/shield_galaxy.svg)](https://jetpack.io/devbox/docs/contributor-quickstart/)
9696
```
9797

9898
</TabItem>
@@ -101,7 +101,7 @@ Once you publish your Devbox project to Github, you can help other developers ge
101101
```html
102102
<a href="https://jetpack.io/devbox/docs/contributor-quickstart/">
103103
<img
104-
src="https://jetpack.io/devbox/img/shield_galaxy.svg"
104+
src="https://jetpack.io/img/devbox/shield_galaxy.svg"
105105
alt="Built with Devbox"
106106
/>
107107
</a>
@@ -110,13 +110,13 @@ Once you publish your Devbox project to Github, you can help other developers ge
110110
</TabItem>
111111
</Tabs>
112112

113-
![Devbox Light Badge](../static/img/shield_moon.svg)
113+
[![Built with Devbox](https://jetpack.io/img/devbox/shield_moon.svg)](https://jetpack.io/devbox/docs/contributor-quickstart/)
114114

115115
<Tabs>
116116
<TabItem value='md' label='Markdown'>
117117

118118
```md
119-
[![Built with Devbox](https://jetpack.io/devbox/img/shield_moon.svg)](https://jetpack.io/devbox/docs/contributor-quickstart/)
119+
[![Built with Devbox](https://jetpack.io/img/devbox/shield_moon.svg)](https://jetpack.io/devbox/docs/contributor-quickstart/)
120120
```
121121

122122
</TabItem>
@@ -125,7 +125,7 @@ Once you publish your Devbox project to Github, you can help other developers ge
125125
```html
126126
<a href="https://jetpack.io/devbox/docs/contributor-quickstart/">
127127
<img
128-
src="https://jetpack.io/devbox/img/shield_moon.svg"
128+
src="https://jetpack.io/img/devbox/shield_moon.svg"
129129
alt="Built with Devbox"
130130
/>
131131
</a>

0 commit comments

Comments
 (0)