Skip to content

Commit

Permalink
added quote generator workshop
Browse files Browse the repository at this point in the history
  • Loading branch information
alexstrugacz committed Mar 15, 2024
1 parent d5a36fc commit 81e9778
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 3 deletions.
Binary file added public/images/QuoteGeneratorImage.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 12 additions & 3 deletions src/constants/workshops.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,23 @@ export const WORKSHOPS: {
bgColor?: string;
completed: boolean;
}[] = [
{
id: "quote_generator_live",
image: "/images/QuoteGeneratorImage.png",
number: 11,
name: "Quote Generator Live",
description: "Resources for the Quote Generator workshop!",
moreDescription: "Build a custom Quote Generator in React using an API!",
completed: false,
},
{
id: "vr_live",
image: "https://i.ibb.co/ct1Bcgm/hcvr-demo.gif",
number: 11,
name: "VR World Live",
description: "Resources for the live VR world workshop!",
moreDescription: "Build a custom VR world in Replit using AFrame and HTML!",
completed: false,
completed: true,
},
{
id: "vr",
Expand All @@ -27,8 +36,8 @@ export const WORKSHOPS: {
name: "VR World Self-Guided",
description: "Build a custom VR world in Replit using AFrame and HTML!",
moreDescription: "Build a custom VR world in Replit using AFrame and HTML!",
completed: false,
customUrl: "https://workshops.hackclub.com/vr_worlds/"
completed: true,
customUrl: "https://workshops.hackclub.com/vr_worlds/",
},
{
id: "tier_list",
Expand Down
24 changes: 24 additions & 0 deletions src/workshops/quote_generator_live/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
In this workshop, you'll build a **Quote Generator** using React Components and an API!

**Timing/Work Time**

🕜 This workshop should take 1 hour to complete

💻 No prior experience needed

---

During this workshop, you'll build a fully functional calculator using React components!
<img src="/images/QuoteGeneratorImage.png"/>

## Part I: Getting Started

Open the Quote Generator link to get started: https://stackblitz.com/edit/stackblitz-starters-ncyurb?file=src%2FApp.js

## Part II: Live Workshop!

Now continue to follow along with the live workshop!

## Part III: Check the Finished Code!

Custom Quote Generator Finished Code: https://stackblitz.com/edit/stackblitz-starters-opur6t?file=src%2FApp.js

0 comments on commit 81e9778

Please sign in to comment.