import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert";import { CheckCircle2 } from "lucide-react";export default function AlertSuccess() { return ( <div className="flex items-center justify-center w-full min-h-screen bg-background p-8"> <div className="w-full max-w-xl"> <Alert variant="success"> <CheckCircle2 className="size-4" /> <AlertTitle>Heads up!</AlertTitle> <AlertDescription> Your profile has been updated. Changes may take a moment to appear. </AlertDescription> </Alert> </div> </div> );}