Task #14: Black Ayah & Scroll Reveal (EHSAN POC)

Two refinements to match ehsan.sa on artifacts/ehsan-poc:

1. Black ayah: the ayah artwork below the hero
   («وأحسنوا إنّ الله يحبّ المحسنين») now renders solid black
   instead of green via Tailwind `brightness-0` on the <img>.
   Ornaments and centered layout unchanged.

2. Scroll-reveal motion: added a reusable Reveal component
   (src/components/Reveal.tsx) built on the existing framer-motion
   dependency. It fades + translates children up (y:28 -> 0) when
   they scroll into view, animates once (viewport once:true,
   amount 0.2), supports an optional stagger `delay`, and falls
   back to a plain div when prefers-reduced-motion is set.

   Applied on:
   - home.tsx: stats row (2 cards, staggered), featured
     opportunity cards grid (staggered by column), workflow-steps
     grid (staggered by column).
   - opportunities.tsx: opportunity cards grid (staggered).

   Added `h-full` to the OpportunityCard root and to the Reveal
   wrappers / wrapped Cards so the motion wrapper becoming the grid
   item does not break equal-height cards.

Out of scope (unchanged): two-card stats layout, nav, services
mega-menu, hero slider/carousel, copy. No scroll animation on
header/nav or hero.

Verified: tsc --noEmit passes; restarted ehsan-poc web workflow
to clear HMR; screenshot confirms the ayah is black.
This commit is contained in:
Replit Agent
2026-06-05 19:11:34 +00:00
parent c0eecf2e26
commit c7573c35bf
4 changed files with 80 additions and 40 deletions
@@ -39,7 +39,7 @@ export function OpportunityCard({ request }: OpportunityCardProps) {
}; };
return ( return (
<div className="bg-card rounded-2xl border border-card-border shadow-sm overflow-hidden flex flex-col hover-elevate"> <div className="bg-card rounded-2xl border border-card-border shadow-sm overflow-hidden flex flex-col h-full hover-elevate">
{/* Photo + progress bar */} {/* Photo + progress bar */}
<div className="relative"> <div className="relative">
<img <img
@@ -0,0 +1,28 @@
import { motion, useReducedMotion } from "framer-motion";
import type { ReactNode } from "react";
interface RevealProps {
children: ReactNode;
delay?: number;
className?: string;
}
export function Reveal({ children, delay = 0, className = "" }: RevealProps) {
const reduce = useReducedMotion();
if (reduce) {
return <div className={className}>{children}</div>;
}
return (
<motion.div
className={className}
initial={{ opacity: 0, y: 28 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, amount: 0.2 }}
transition={{ duration: 0.5, delay, ease: [0.22, 1, 0.36, 1] }}
>
{children}
</motion.div>
);
}
+46 -37
View File
@@ -6,6 +6,7 @@ import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input"; import { Input } from "@/components/ui/input";
import { Skeleton } from "@/components/ui/skeleton"; import { Skeleton } from "@/components/ui/skeleton";
import { OpportunityCard } from "../components/OpportunityCard"; import { OpportunityCard } from "../components/OpportunityCard";
import { Reveal } from "../components/Reveal";
import { Riyal } from "@/components/Riyal"; import { Riyal } from "@/components/Riyal";
import { Link } from "wouter"; import { Link } from "wouter";
import { Search, Pause, Play } from "lucide-react"; import { Search, Pause, Play } from "lucide-react";
@@ -141,7 +142,7 @@ export default function Home() {
<img <img
src={ayahArt} src={ayahArt}
alt="وأحسنوا إن الله يحب المحسنين" alt="وأحسنوا إن الله يحب المحسنين"
className="h-7 sm:h-9 md:h-10 w-auto" className="h-7 sm:h-9 md:h-10 w-auto brightness-0"
data-testid="img-ayah" data-testid="img-ayah"
/> />
<Ornament className="hidden sm:block shrink-0 -scale-x-100" /> <Ornament className="hidden sm:block shrink-0 -scale-x-100" />
@@ -157,30 +158,34 @@ export default function Home() {
</div> </div>
) : ( ) : (
<div className="grid grid-cols-1 md:grid-cols-2 gap-6 mb-16"> <div className="grid grid-cols-1 md:grid-cols-2 gap-6 mb-16">
<Card> <Reveal className="h-full">
<CardHeader className="pb-2"> <Card className="h-full">
<CardTitle className="text-sm font-medium text-muted-foreground"> <CardHeader className="pb-2">
{t.home.totalCollected} <CardTitle className="text-sm font-medium text-muted-foreground">
</CardTitle> {t.home.totalCollected}
</CardHeader> </CardTitle>
<CardContent> </CardHeader>
<div className="text-4xl font-bold text-primary inline-flex items-center gap-2"> <CardContent>
{stats?.totalCollected?.toLocaleString() || 0} <Riyal /> <div className="text-4xl font-bold text-primary inline-flex items-center gap-2">
</div> {stats?.totalCollected?.toLocaleString() || 0} <Riyal />
</CardContent> </div>
</Card> </CardContent>
<Card> </Card>
<CardHeader className="pb-2"> </Reveal>
<CardTitle className="text-sm font-medium text-muted-foreground"> <Reveal delay={0.1} className="h-full">
{t.home.totalClosed} <Card className="h-full">
</CardTitle> <CardHeader className="pb-2">
</CardHeader> <CardTitle className="text-sm font-medium text-muted-foreground">
<CardContent> {t.home.totalClosed}
<div className="text-4xl font-bold text-foreground"> </CardTitle>
{stats?.totalClosed || 0} </CardHeader>
</div> <CardContent>
</CardContent> <div className="text-4xl font-bold text-foreground">
</Card> {stats?.totalClosed || 0}
</div>
</CardContent>
</Card>
</Reveal>
</div> </div>
)} )}
@@ -221,8 +226,10 @@ export default function Home() {
</div> </div>
) : ( ) : (
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
{filtered.slice(0, 6).map((request) => ( {filtered.slice(0, 6).map((request, i) => (
<OpportunityCard key={request.id} request={request} /> <Reveal key={request.id} delay={(i % 3) * 0.08} className="h-full">
<OpportunityCard request={request} />
</Reveal>
))} ))}
</div> </div>
)} )}
@@ -233,16 +240,18 @@ export default function Home() {
<h2 className="text-2xl font-bold mb-8 text-center">{t.home.workflowTitle}</h2> <h2 className="text-2xl font-bold mb-8 text-center">{t.home.workflowTitle}</h2>
<div className="grid grid-cols-2 md:grid-cols-5 gap-4"> <div className="grid grid-cols-2 md:grid-cols-5 gap-4">
{Array.from({ length: 10 }).map((_, i) => ( {Array.from({ length: 10 }).map((_, i) => (
<Card key={i} className="bg-muted/50 border-none shadow-none"> <Reveal key={i} delay={(i % 5) * 0.06} className="h-full">
<CardContent className="p-4 text-center"> <Card className="bg-muted/50 border-none shadow-none h-full">
<div className="w-8 h-8 rounded-full bg-primary/20 text-primary mx-auto flex items-center justify-center font-bold mb-3 text-sm"> <CardContent className="p-4 text-center">
{i + 1} <div className="w-8 h-8 rounded-full bg-primary/20 text-primary mx-auto flex items-center justify-center font-bold mb-3 text-sm">
</div> {i + 1}
<div className="text-sm font-medium"> </div>
{t.workflow[`step${i + 1}` as keyof typeof t.workflow]} <div className="text-sm font-medium">
</div> {t.workflow[`step${i + 1}` as keyof typeof t.workflow]}
</CardContent> </div>
</Card> </CardContent>
</Card>
</Reveal>
))} ))}
</div> </div>
</section> </section>
@@ -3,6 +3,7 @@ import { useLanguage } from "../contexts/LanguageContext";
import { useListPublishedRequests } from "@workspace/api-client-react"; import { useListPublishedRequests } from "@workspace/api-client-react";
import { Skeleton } from "@/components/ui/skeleton"; import { Skeleton } from "@/components/ui/skeleton";
import { OpportunityCard } from "../components/OpportunityCard"; import { OpportunityCard } from "../components/OpportunityCard";
import { Reveal } from "../components/Reveal";
type NeedTypeKey = type NeedTypeKey =
| "electricity" | "water" | "food" | "health" | "electricity" | "water" | "food" | "health"
@@ -70,8 +71,10 @@ export default function Opportunities() {
</div> </div>
) : ( ) : (
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
{filtered.map((request) => ( {filtered.map((request, i) => (
<OpportunityCard key={request.id} request={request} /> <Reveal key={request.id} delay={(i % 3) * 0.08} className="h-full">
<OpportunityCard request={request} />
</Reveal>
))} ))}
</div> </div>
)} )}