diff --git a/pledge-now-pay-later/src/app/page.tsx b/pledge-now-pay-later/src/app/page.tsx index 800ad69..b976d8d 100644 --- a/pledge-now-pay-later/src/app/page.tsx +++ b/pledge-now-pay-later/src/app/page.tsx @@ -157,58 +157,60 @@ export default function HomePage() { We built the missing system between “I'll donate” and the money arriving.

- {/* Alternating image/text rows — gap-px between */} -
+ {/* Stacking cards — sticky scroll effect */} +
{PERSONAS.map((p, i) => { const imgFirst = i % 2 === 0 return ( - -
- {/* Image — 7 cols, cinematic */} -
+
+ - {p.scenario} -
+
+ {/* Image — ~58%, fills full card height */} +
+ {p.scenario} +
- {/* Text — 5 cols */} -
-

- {p.scenario} -

+ {/* Text — ~42% */} +
+

+ {p.scenario} +

- {/* Pain stats — the gap, visible contrast */} -
-

- {p.stat1} -

-

- {p.stat2} -

+ {/* Pain stats */} +
+

+ {p.stat1} +

+

+ {p.stat2} +

+
+ +

+ {p.copy} +

+ +

+ {p.cta} → +

+
- -

- {p.copy} -

- -

- {p.cta} → -

-
+
- +
) })}
diff --git a/stack1.png b/stack1.png new file mode 100644 index 0000000..c04c768 Binary files /dev/null and b/stack1.png differ diff --git a/stack2.png b/stack2.png new file mode 100644 index 0000000..adaa7d8 Binary files /dev/null and b/stack2.png differ