Skip to content

Commit c506e0e

Browse files
committed
showcase language updates
1 parent caa63ad commit c506e0e

File tree

2 files changed

+21
-12
lines changed

2 files changed

+21
-12
lines changed

content/pages/guides/passenger-showcase-guide.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ date: '2022-05-04'
66

77
## Submission Form
88

9-
Thank you for sharing your work in the Passenger Showcase! There are currently two ways to submit your work: by using this form to upload your work, or to follow the instructions below to create a Pull Request for your project on GitHub!
9+
Thank you for sharing your work in the Passenger Showcase! The Passenger Showcase is a community collection that lives on the Coding Train website, but also is featured periodically during Coding Train live streams as well as on other Coding Train social media spaces!
10+
11+
There are currently two ways to submit your work:
12+
13+
1. Use the form below to share your work.
14+
2. Follow the instructions below to create a pull request to add your project manually.
1015

1116
<PassengerShowcaseForm />
1217

@@ -16,11 +21,11 @@ If you have questions or need any help, come board the [Coding Train Discord](ht
1621

1722
If you choose not to use the form above, you can also submit a Pull Request on GitHub. The first step is to associate your submission with a specific video. Don't worry too much if you aren't sure, just pick wherever you think it fits best! If your work relates to multiple videos just pick one!
1823

19-
First, you will need to [fork the repo](https://docs.github.com/en/get-started/quickstart/fork-a-repo#forking-a-repository). On the [GitHub repo homepage](https://github.com/CodingTrain/thecodingtrain.com), click the button `Fork` in the upper-right corner. You will be prompted to the `Create a new fork` window, press `Create fork` in the bottom of the page. Now, you will have a fork of the original repo.
24+
First, you will need to [fork the repo](https://docs.github.com/en/get-started/quickstart/fork-a-repo#forking-a-repository). On the [GitHub repo homepage](https://github.com/CodingTrain/thecodingtrain.com), click the button `Fork` in the upper-right corner. You will be prompted to the `Create a new fork` window, press `Create fork` in the bottom of the page. Now, you will have a fork of the original repo.
2025

2126
![Fork button](./passenger-showcase/fork.png)
2227

23-
Second, create a branch in your fork by clicking a button in the upper left-hand corner where it says `main`.
28+
Second, create a branch in your fork by clicking a button in the upper left-hand corner where it says `main`.
2429
Type in the name of a branch (you can make this up!) and create the branch! In the example below, I'm calling it `dan-showcase-submission`.
2530

2631
![Branches dropdown](./passenger-showcase/branches.png)
@@ -64,7 +69,9 @@ All showcase submissions should include a thumbnail preview image! While any asp
6469

6570
## Submitting a Pull Request
6671

67-
[Return to the main branch](https://github.com/CodingTrain/thecodingtrain.com/tree/main), and select "Compare & pull request" (or go to the “Pull requests” tab and create a pull request by selecting "New pull request", then "compare: main" and choosing `your-branch-name` from the dropdown)
72+
[Return to the main branch](https://github.com/CodingTrain/thecodingtrain.com/tree/main), and select "Compare & pull request" (or go to the “Pull requests” tab and create a pull request by selecting "New pull request", then "compare: main" and choosing `your-branch-name` from the dropdown).
73+
74+
If you would like to opt out of having your work featured on social media, please note in the comments field of your pull request.
6875

6976
![Uploading thumbnail](./passenger-showcase/pullrequest1.png)
7077
![Uploading thumbnail](./passenger-showcase/pullrequest2.png)

src/components/PassengerShowcaseForm.js

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -294,8 +294,8 @@ const PassengerShowcaseForm = () => {
294294
onChange={onChange}
295295
/>
296296
<span>
297-
A link to either the source code (p5.js editor, GitHub) or a video
298-
(YouTube, Vimeo).
297+
A link to any kind of documentation of your project (blog post,
298+
p5.js editor sketch, GitHub repo, video).
299299
</span>
300300
</label>
301301
<label>
@@ -350,8 +350,9 @@ const PassengerShowcaseForm = () => {
350350
onChange={onChange}
351351
/>
352352
<span>
353-
<em>Optional</em>. Your email address used for the submission in the
354-
Git repository.
353+
<em>Optional</em>. Your email address (This is not stored, but
354+
rather used to match your GitHub account and assign commits for the
355+
submission.)
355356
</span>
356357
</label>
357358
<label>
@@ -363,8 +364,9 @@ const PassengerShowcaseForm = () => {
363364
onChange={onChange}
364365
/>
365366
<span>
366-
<em>Optional</em>. We are sharing the showcase on Twitter! Please
367-
leave your handle if you'd like to be tagged.
367+
<em>Optional</em>. We are not currently featuring the showcase on
368+
Twitter/X, but feel free to leave your handle if you’d like to be
369+
tagged and credited if and when we do.
368370
</span>
369371
</label>
370372
<label>
@@ -376,8 +378,8 @@ const PassengerShowcaseForm = () => {
376378
onChange={onChange}
377379
/>
378380
<span>
379-
<em>Optional</em>. We are sharing the showcase on Instagram! Please
380-
leave your handle if you'd like to be tagged.
381+
<em>Optional</em>. We are featuring the showcase on Instagram!
382+
Please leave your handle if youd like to be tagged and credited!
381383
</span>
382384
</label>
383385
{error && <div className={css.error}>{error}</div>}

0 commit comments

Comments
 (0)