import type { ReactNode } from "react"; import { cn } from "@/lib/utils"; type DemoProps = { image: string; title: string; type?: "boxed" | "plain"; children?: ReactNode; }; export function Demo({ image, title, type = "plain", children }: DemoProps) { return (
{title}
{title} {children}
); }