Skip to content

Commit f2fead6

Browse files
committed
Simplify kit labels and trim roadmap blurb on the new-project flow
1 parent 2ca1048 commit f2fead6

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

src/components/platform/projects-board.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ export function ProjectsBoard({ projects }: { projects: Project[] }) {
3232
<PageHeader
3333
eyebrow="projects"
3434
title="Your projects"
35-
description="Make project -> Submit schematic and code (a reviewer checks here) -> Kit sent out -> make -> send demo -> (demo reviewed here)-> Get currency"
3635
action={
3736
<Button
3837
tone="primary"

src/components/platform/projects/project-modals.tsx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -122,15 +122,13 @@ export function NewProjectModal({
122122
className="mt-0.5 size-4 accent-[#BD0F32]"
123123
/>
124124
<p className="text-sm font-black text-black">
125-
{value === "esp32"
126-
? "B - Advanced (ESP32)"
127-
: "A - Beginner (Arduino)"}
125+
{value === "esp32" ? "B - ESP32" : "A - Arduino"}
128126
</p>
129127
</div>
130128
<p className="mt-1 text-xs text-black/50">
131129
{value === "esp32"
132-
? "ESP32 board, breadboard, more sensors, Wi-Fi support."
133-
: "Arduino board, breadboard, basic components."}
130+
? "ESP32 board, breadboard, sensors, and Wi-Fi/Bluetooth support."
131+
: "Arduino board, breadboard, sensors, and additional modules."}
134132
</p>
135133
</div>
136134
</label>

0 commit comments

Comments
 (0)