Skip to content

Commit 6aec972

Browse files
committed
Update image file links
1 parent e85401c commit 6aec972

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

projects/create-a-doodle-gallery/create-a-doodle-gallery.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ I miss the days of the internet when people built cool stuff for the sake of mak
2727

2828
Here's a project tutorial that might help bring us back to these days - you'll be building a website where anyone can draw a doodle for a public virtual museum exhibit!
2929

30-
![Doodle gallery](./images/ezgif-509d613e7e5e8ca6.gif)
30+
<ImageZoom src="https://raw.githubusercontent.com/codedex-io/projects/main/projects/create-a-doodle-gallery/images/ezgif-509d613e7e5e8ca6.gif" alt="Doodle gallery" />
3131

3232
To make this project, we'll be using the classic web dev tools HTML, CSS, and JavaScript, and will be storing our drawings in [Supabase](http://supabase.com/).
3333

@@ -71,7 +71,7 @@ We need to add API keys to our project for it to connect to our storage bucket -
7171

7272
Go to the API menu under Project Settings. Find your Project URL and API key. They should look something like this:
7373

74-
![API keys](./images/key-url-example.png)
74+
<ImageZoom src="https://raw.githubusercontent.com/codedex-io/projects/main/projects/create-a-doodle-gallery/images/key-url-example.png" alt="API keys" />
7575

7676
### Clone Template
7777

@@ -111,15 +111,15 @@ npm create vite@latest
111111

112112
Then, answer the prompts as follows. You can name your project however you like. When prompted, pick `Vanilla` as your framework and `JavaScript` as your variant. Your terminal should look like this at the end of completing the steps:
113113

114-
![Vite setup](./images/vite-setup.png)
114+
<ImageZoom src="https://raw.githubusercontent.com/codedex-io/projects/main/projects/create-a-doodle-gallery/images/vite-setup.png" alt="Vite setup" />
115115

116116
This might look different depending on what kind of computer you're using — in my case, I'm on a Macbook. If you're struggling with Vite, you can check out our [Vite project tutorial](https://www.codedex.io/projects/create-a-react-app-with-vite)!
117117

118118
### Running your server
119119

120120
To start up a server with your webpage running, type `npm run dev` in the Terminal. It'll give you a URL that looks something like: `http://localhost:3000/` - but the numbers in the URL can vary. Copy the link and paste it in your browser, and you should see something like this:
121121

122-
![](./images/vite-startup-template-screen.png)
122+
<ImageZoom src="https://raw.githubusercontent.com/codedex-io/projects/main/projects/create-a-doodle-gallery/images/vite-startup-template-screen.png" alt="Vite startup template screen" />
123123

124124
### .env file and API keys
125125

@@ -383,7 +383,7 @@ We want our big gallery to load random drawings, so everyone's drawings have a s
383383
384384
Then we're going to add our batch of drawings to our marquee. If you don't know what a marquee is, it's a scrolling gallery, or set of text that seems to scroll infinitely!
385385
386-
![Marquee example](./images/webflow-marquee-example.gif)
386+
<ImageZoom src="https://raw.githubusercontent.com/codedex-io/projects/main/projects/create-a-doodle-gallery/images/webflow-marquee-example.gif" alt="Marquee example" />
387387
388388
We'll write out our function header for `repeatMarquee()`, limiting the number of drawings picked to 200. Our marquee has two rows, and if neither of them render, it'll stop the function through the `if` statement.
389389

0 commit comments

Comments
 (0)