"use client"; import React from "react"; import Link from "next/link"; import type { LucideIcon } from "lucide-react"; import { TONES, type Tone } from "./tones"; /** A single "quick action" tile — icon chip, title, description, whole tile links out. */ export function QuickActionTile({ icon: Icon, title, description, href, tone = "brand", }: { icon: LucideIcon; title: string; description: string; href: string; tone?: Tone; }) { const t = TONES[tone] || TONES.brand; return (
{title}
{description}
); } export function QuickActionGrid({ children }: { children: React.ReactNode }) { return
{children}
; }