Components
Comprehensive account settings form with structured fields for name, email, password, and phone number, featuring icons, grouped inputs, and save actions.
Loading preview...
import { SettingsForm } from "@/components/ui/form-3";
export default function DemoOne() {
return (
<div className="relative flex min-h-screen w-full justify-center px-4 py-10">
<SettingsForm />
</div>
);
}