Skip to content

Commit

Permalink
Updated the typeform urls (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
fatfingers23 authored Dec 5, 2023
1 parent 9cce75b commit 281baa5
Show file tree
Hide file tree
Showing 16 changed files with 20 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ _If you're stuck somewhere, join our Discord channel and ask at [#launchpad](htt

## Time for your feedback!

We want to tailor Shuttle Launchpad to your needs! [Give us feedback](https://btl1d1x5z23.typeform.com/to/dTU2F8jI) on the most recent issue and your wishes here.
We want to tailor Shuttle Launchpad to your needs! [Give us feedback](https://shuttlerust.typeform.com/to/dTU2F8jI) on the most recent issue and your wishes here.

## Join us!

Expand Down
2 changes: 1 addition & 1 deletion _launchpad/2023-06-16-issue-01-Getting-Started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ That's your start into Rust and Axum. From there on, we will implement some fun

## Time for your feedback!

We want to tailor Shuttle Launchpad to your needs! [Give us feedback](https://btl1d1x5z23.typeform.com/to/dTU2F8jI) on the most recent issue and your wishes here.
We want to tailor Shuttle Launchpad to your needs! [Give us feedback](https://shuttlerust.typeform.com/to/dTU2F8jI) on the most recent issue and your wishes here.

## Join us!

Expand Down
4 changes: 2 additions & 2 deletions _launchpad/2023-06-16-issue-02-Structs-and-Enums.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ And that's it! You just deployed a podcast web application to the cloud! 🎉

Let us quickly reiterate what we have learned:

- Structs are used to group related data together.
- Structs are used to group related data together.
- Enums are used to define a type that can have multiple variants. Each variant can have different data associated with it.
- Both can have `impl` blocks, which allow us to define methods on the struct or enum.
- `Option` is an enum that can either be `Some` or `None`. It is used to represent the absence of a value.
Expand All @@ -314,7 +314,7 @@ Btw. the app looks a little bleak, give it some beautiful styles! You can find t

## Time for your feedback!

We want to tailor Shuttle Launchpad to your needs! [Give us feedback](https://btl1d1x5z23.typeform.com/to/dTU2F8jI) on the most recent issue and your wishes here.
We want to tailor Shuttle Launchpad to your needs! [Give us feedback](https://shuttlerust.typeform.com/to/dTU2F8jI) on the most recent issue and your wishes here.

## Join us!

Expand Down
6 changes: 3 additions & 3 deletions _launchpad/2023-07-14-issue-04-Ownership-Lifetimes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ type SharedState = Arc<Mutex<SmallRng>>;

#[shuttle_runtime::main]
async fn axum() -> shuttle_axum::ShuttleAxum {
let state =
let state =
Arc::new(Mutex::new(SmallRng::from_entropy()));
let router = Router::new()
.route("/lotto/:pot/:amount", get(handler_lotto))
Expand Down Expand Up @@ -189,7 +189,7 @@ async fn handler_lotto(
Extension(state): Extension<SharedState>,
) -> impl IntoResponse {
let mut rng = state.lock().await;
let mut lotto: Lotto<'_, SmallRng> =
let mut lotto: Lotto<'_, SmallRng> =
Lotto::new(pot_size, &mut rng);
let results = lotto.take(amount);
Json(results)
Expand All @@ -200,7 +200,7 @@ Now you can re-use `Lotto` for every possible random number generator from the `

## Time for your feedback!

We want to tailor Shuttle Launchpad to your needs! [Give us feedback](https://btl1d1x5z23.typeform.com/to/dTU2F8jI) on the most recent issue and your wishes here.
We want to tailor Shuttle Launchpad to your needs! [Give us feedback](https://shuttlerust.typeform.com/to/dTU2F8jI) on the most recent issue and your wishes here.

## Join us!

Expand Down
2 changes: 1 addition & 1 deletion _launchpad/2023-10-17-issue-10-Serving-HTML.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ $ cargo shuttle deploy

## Time for your feedback!

We want to tailor Shuttle Launchpad to your needs! [Give us feedback](https://btl1d1x5z23.typeform.com/to/dTU2F8jI) on the most recent issue and your wishes here.
We want to tailor Shuttle Launchpad to your needs! [Give us feedback](https://shuttlerust.typeform.com/to/dTU2F8jI) on the most recent issue and your wishes here.

## Join us!

Expand Down
4 changes: 2 additions & 2 deletions _launchpad/2023-11-08-issue-06-CRUD-Postgres.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Issue #6: A little CRUD"
date: "2023-08-11T16:00:00"
---

# Shuttle Launchpad #6: A little CRUD
# Shuttle Launchpad #6: A little CRUD

Welcome to Shuttle Launchpad Issue #6! This time, we want to apply all the learnings from the previous issues to create something that you might do a lot when writing backends: CRUD APIs. CRUD stands for "Create, read, update, delete", and is a pattern to manage database records via HTTP APIs. In doing so, we also learn about how to use a PostgreSQL database in Shuttle, and how the `sqlx` crate works. Have fun!

Expand Down Expand Up @@ -245,7 +245,7 @@ Good luck, and don't forget to share your results!

## Time for your feedback!

We want to tailor Shuttle Launchpad to your needs! [Give us feedback](https://btl1d1x5z23.typeform.com/to/dTU2F8jI) on the most recent issue and your wishes here.
We want to tailor Shuttle Launchpad to your needs! [Give us feedback](https://shuttlerust.typeform.com/to/dTU2F8jI) on the most recent issue and your wishes here.

## Join us!

Expand Down
2 changes: 1 addition & 1 deletion _launchpad/2023-12-09-issue-08-websockets-chat.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ And that's all for today!
## Time for your feedback!
We want to tailor Shuttle Launchpad to your needs! [Give us feedback](https://btl1d1x5z23.typeform.com/to/dTU2F8jI) on the most recent issue and your wishes here.
We want to tailor Shuttle Launchpad to your needs! [Give us feedback](https://shuttlerust.typeform.com/to/dTU2F8jI) on the most recent issue and your wishes here.
## Join us!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ And much more! And don't forget to share your results with us! Write an app, and

## Time for your feedback!

We want to tailor Shuttle Launchpad to your needs! [Give us feedback](https://btl1d1x5z23.typeform.com/to/dTU2F8jI) on the most recent issue and your wishes here.
We want to tailor Shuttle Launchpad to your needs! [Give us feedback](https://shuttlerust.typeform.com/to/dTU2F8jI) on the most recent issue and your wishes here.

## Join us!

Expand Down
2 changes: 1 addition & 1 deletion _launchpad/2023-22-09-issue-09-custom-validation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ From here on you can do a lot more. Now that you have a validated JSON input, yo

## Time for your feedback!

We want to tailor Shuttle Launchpad to your needs! [Give us feedback](https://btl1d1x5z23.typeform.com/to/dTU2F8jI) on the most recent issue and your wishes here.
We want to tailor Shuttle Launchpad to your needs! [Give us feedback](https://shuttlerust.typeform.com/to/dTU2F8jI) on the most recent issue and your wishes here.

## Join us!

Expand Down
2 changes: 1 addition & 1 deletion _launchpad/2023-28-07-issue-05-Traits-Image-Processing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ And keep the program ready. Next time, we try to improve it even further!

## Time for your feedback!

We want to tailor Shuttle Launchpad to your needs! [Give us feedback](https://btl1d1x5z23.typeform.com/to/dTU2F8jI) on the most recent issue and your wishes here.
We want to tailor Shuttle Launchpad to your needs! [Give us feedback](https://shuttlerust.typeform.com/to/dTU2F8jI) on the most recent issue and your wishes here.

## Join us!

Expand Down
2 changes: 1 addition & 1 deletion _launchpad/2023-28-08-issue-07-more-CRUD.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ What could you do next? What about

## Time for your feedback!

We want to tailor Shuttle Launchpad to your needs! [Give us feedback](https://btl1d1x5z23.typeform.com/to/dTU2F8jI) on the most recent issue and your wishes here.
We want to tailor Shuttle Launchpad to your needs! [Give us feedback](https://shuttlerust.typeform.com/to/dTU2F8jI) on the most recent issue and your wishes here.

## Join us!

Expand Down
2 changes: 1 addition & 1 deletion components/sections/ShuttleAI/Waitlist.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const Waitlist: FC<WaitListProps> = ({ cta, description, subDescription }
<p className='mt-8 max-w-2xl text-center text-xl text-[#7A7A7A]'>{description}</p>
<div className='mt-10 flex flex-col items-center justify-center text-center font-gradual text-lg font-bold sm:flex-row'>
<Link
href='https://btl1d1x5z23.typeform.com/shuttle-ai'
href='https://shuttlerust.typeform.com/shuttle-ai'
target='_blank'
className='mt-4 flex h-[56px] cursor-pointer items-center rounded-[14px] bg-[#D8D8D8] px-6 text-lg text-black sm:mt-0'
onClick={() => {
Expand Down
2 changes: 1 addition & 1 deletion components/sections/ShuttleBatch/Countdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const Countdown = () => {
variant='primary'
invertOnDark
className='bg-[#13292C] text-white'
href='https://btl1d1x5z23.typeform.com/shuttle-batch-2'
href='https://shuttlerust.typeform.com/shuttle-batch-2'
>
Apply now
</Button>
Expand Down
2 changes: 1 addition & 1 deletion components/sections/ShuttleBatch/Testimonials.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const Testimonials = () => {
variant='primary'
invertOnDark
className='bg-[#13292C] text-white'
href='https://btl1d1x5z23.typeform.com/shuttle-batch-2'
href='https://shuttlerust.typeform.com/shuttle-batch-2'
>
Apply now
</Button>
Expand Down
2 changes: 1 addition & 1 deletion components/sections/ShuttleHeroesHero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const ShuttleHeroesHero = () => {
variant='primary'
invertOnDark
className='bg-[#13292C] text-white'
href='https://btl1d1x5z23.typeform.com/to/WAu53vBi'
href='https://shuttlerust.typeform.com/to/WAu53vBi'
onClick={() => {
trackEvent('heroes_becomeahero')
}}
Expand Down
2 changes: 1 addition & 1 deletion lib/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const GITHUB_URL = 'https://github.com/shuttle-hq/shuttle'

export const GITHUB_EXAMPLES_URL = 'https://github.com/shuttle-hq/examples'

export const CONTACT_US_URI = 'https://btl1d1x5z23.typeform.com/shuttle-pro'
export const CONTACT_US_URI = 'https://shuttlerust.typeform.com/shuttle-pro'
export const GET_STARTED_URI = 'https://console.shuttle.rs/account/billing'

export const DISCORD_URL = 'https://discord.gg/shuttle'
Expand Down

0 comments on commit 281baa5

Please sign in to comment.