GRV-Summit-Site/components/exhibit/BoothPackages.tsx
“kirukib” 1a710aa3c6
Some checks are pending
Deploy to Cloudflare Workers (OpenNext) / deploy (push) Waiting to run
first commit + project setup
2026-05-20 11:57:21 +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="border-border">
<CardHeader>
<CardTitle className="text-lg">{pkg.name}</CardTitle>
<CardDescription className="font-medium text-[#1f3d7e]">{pkg.size}</CardDescription>
</CardHeader>
<CardContent className="space-y-4">
<p className="text-sm text-muted-foreground 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>
);
}