GRV-Summit-Site/components/exhibit/BoothPackages.tsx
“kirukib” efa48f6f6b
Some checks are pending
Deploy to Cloudflare Workers (OpenNext) / deploy (push) Waiting to run
Refine topography to hero and footer, improve readability and hero motion.
Limit mainwhite pattern to the landing hero and a bottom footer band; remove it from sections and page headers. Add vertical water-flow animation and stronger hero particles with hover boost. Fix green text on white sections and card descriptions in green bands, including the two-days program cards.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-21 14:29:39 +03:00

29 lines
1.0 KiB
TypeScript

import { boothPackages } from "@/content/exhibit";
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
export function BoothPackages() {
return (
<div className="grid gap-6 md:grid-cols-3">
{boothPackages.map((pkg) => (
<Card key={pkg.id} className="topo-card-surface border-border bg-white text-[#1a5c38]">
<CardHeader>
<CardTitle className="text-lg">{pkg.name}</CardTitle>
<CardDescription className="font-medium text-[#1a5c38]/90">{pkg.size}</CardDescription>
</CardHeader>
<CardContent className="space-y-4">
<p className="text-sm text-[#3d5248] leading-relaxed">{pkg.description}</p>
<ul className="space-y-2">
{pkg.highlights.map((h) => (
<li key={h} className="flex gap-2 text-sm">
<span className="text-[#ffb300]"></span>
{h}
</li>
))}
</ul>
</CardContent>
</Card>
))}
</div>
);
}