Skip to content

Commit 27a6304

Browse files
committed
fix: correct image paths for Vite base configuration
1 parent 9ed0b48 commit 27a6304

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

src/data.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const cardsData = [
88
id: 1,
99
name: "MavScript.blu",
1010
role: "The Founder",
11-
image: "/assets/bunny-hoodie.png",
11+
image: "./assets/bunny-hoodie.png",
1212
frameColor: "#a8e6ff", // Pastel Sky Blue - Tech/Innovation
1313
flipType: "flip-standard", // Classic door flip
1414
stats: { sleep: "404 Not Found", coffee: "Required" },
@@ -18,7 +18,7 @@ const cardsData = [
1818
id: 2,
1919
name: "The Architect",
2020
role: "Creative Visionary",
21-
image: "/assets/galaxy-girl.png",
21+
image: "./assets/galaxy-girl.png",
2222
frameColor: "#d4a5ff", // Pastel Lavender - Galaxy/Cosmic
2323
flipType: "flip-diagonal", // Disorienting diagonal spin
2424
stats: { creativity: 100, reality_tether: "10%" },
@@ -28,7 +28,7 @@ const cardsData = [
2828
id: 3,
2929
name: "The Crew",
3030
role: "Factory Forged",
31-
image: "/assets/mechanic-crew.png",
31+
image: "./assets/mechanic-crew.png",
3232
frameColor: "#b0c4d4", // Pastel Steel Blue - Industrial/Hardware
3333
flipType: "flip-vertical", // Heavy garage door flip
3434
stats: { PercussiveMaintenance: 100, WD40_Levels: "Max" },
@@ -38,7 +38,7 @@ const cardsData = [
3838
id: 4,
3939
name: "Brindle Buddy",
4040
role: "Morale Officer",
41-
image: "/assets/dog-love.png",
41+
image: "./assets/dog-love.png",
4242
frameColor: "#ffb3d9", // Pastel Rose Pink - Love/Loyalty
4343
flipType: "flip-standard", // Gentle friendly flip
4444
stats: { loyalty: 100, borks: "Infinite" },
@@ -48,7 +48,7 @@ const cardsData = [
4848
id: 5,
4949
name: "Experiment 626",
5050
role: "The Mascot",
51-
image: "/assets/stitch-cute.png",
51+
image: "./assets/stitch-cute.png",
5252
frameColor: "#ff99cc", // Pastel Hot Pink - Chaos/Energy
5353
flipType: "flip-invert", // Chaotic inverted flip
5454
stats: { chaos: 100, cuteness: 100 },
@@ -58,7 +58,7 @@ const cardsData = [
5858
id: 6,
5959
name: "Dragon Rider",
6060
role: "Backend Ops",
61-
image: "/assets/dragon-rider.png",
61+
image: "./assets/dragon-rider.png",
6262
frameColor: "#ffb399", // Pastel Coral - Power/Strength
6363
flipType: "flip-vertical", // Powerful vertical flip
6464
stats: { strength: 95, speed: 80 },
@@ -68,7 +68,7 @@ const cardsData = [
6868
id: 7,
6969
name: "Chicken Keeper",
7070
role: "Resource Manager",
71-
image: "/assets/viking-chicken.png",
71+
image: "./assets/viking-chicken.png",
7272
frameColor: "#ffe5a3", // Pastel Golden Yellow - Guardianship/Reliability
7373
flipType: "flip-standard", // Steady reliable flip
7474
stats: { inventory: 100, clucks_given: 0 },
@@ -78,7 +78,7 @@ const cardsData = [
7878
id: 8,
7979
name: "The Gonzo Devs",
8080
role: "Bug Hunters",
81-
image: "/assets/fear-loathing.png",
81+
image: "./assets/fear-loathing.png",
8282
frameColor: "#a8e6b3", // Pastel Mint Green - Debugging/Success
8383
flipType: "flip-invert", // Trippy inverted flip
8484
stats: { hallucinations: "Yes", bugs_seen: "Everywhere" },
@@ -88,7 +88,7 @@ const cardsData = [
8888
id: 9,
8989
name: "Neon Raver",
9090
role: "UI Wizard",
91-
image: "/assets/glow-sticks.png",
91+
image: "./assets/glow-sticks.png",
9292
frameColor: "#e0b3ff", // Pastel Lilac - UI/UX Magic
9393
flipType: "flip-diagonal", // Flashy diagonal flip
9494
stats: { glow: 100, energy: "Max" },

0 commit comments

Comments
 (0)