import Button from "./shadcn/button";
export function ButtonDemo() {
return (
Button Component - Two Variants
Unified button system with only two variants: Primary (orange/heat) and Secondary (grey)
{/* Primary Buttons */}
Primary Variant (Orange)
{/* Secondary Buttons */}
Secondary Variant (Grey)
{/* Mixed Usage Example */}
Mixed Usage Example
{/* Size Variations */}
Size Variations
Default Size
Large Size (Default)
);
}