import { Alert, AlertDescription, AlertTitle } from "./alert"; export default function AlertDemo() { return ( <div className="flex items-center justify-center p-8 w-full"> <Alert className="max-w-md"> <AlertTitle>Heads up!</AlertTitle> <AlertDescription> You can add components to your app using the CLI. </AlertDescription> </Alert> </div> ); }