Components
Loading preview...
Here is Alert component
@SubframeApp
npx shadcn@latest add https://21st.dev/r/SubframeApp/alertimport Alert from "@/components/ui/alert";
export default function DemoOne() {
return (
<div className="flex flex-col gap-4 p-4">
<Alert
variant="brand"
title="Brand Alert"
description="This is a brand-styled alert"
/>
</div>
);
}