"use client"; import { Card, CardContent, EmptyState } from "@/components/ds"; import { AlertTriangle } from "lucide-react"; export function LoyaltyScopeNotice({ title, description, alternatives, }: { title: string; description: string; alternatives?: { label: string; href: string }[]; }) { return (

{title}

{description}

{alternatives?.length ? ( ) : null}
); } export function LoyaltyPermissionDenied({ message }: { message?: string }) { return ( ); }