diff --git a/src/pages/CreateContactPage.tsx b/src/pages/CreateContactPage.tsx
index b7d6cfb..980d647 100644
--- a/src/pages/CreateContactPage.tsx
+++ b/src/pages/CreateContactPage.tsx
@@ -6,12 +6,14 @@ import { Row } from "../ui/Row";
import Button from "@mui/material/Button";
import PersonAddAltOutlinedIcon from "@mui/icons-material/PersonAddAltOutlined";
import Typography from "@mui/material/Typography";
-import { Step, StepLabel, Stepper, Divider } from "@mui/material";
+import { Step, StepLabel, Stepper, Divider, Card } from "@mui/material";
import { InformationsForm } from "../ui/Contact/CreateContact/InformationsForm";
-import { AddressForm } from "../ui/Contact/CreateContact/AddressForm";
import { RightsManagementForm } from "../ui/Contact/CreateContact/RightsManagementForm";
+import { Breadcrumbs } from "../ui/Breadcrumbs";
-const steps = ["Informations du contact", "Adresse du contact", "Gestion des droits"];
+// const steps = ["Informations du contact", "Adresse du contact", "Gestion des droits"];
+
+const steps = ["Informations du contact", "Gestion des droits"];
export const CreateContactPage = () => {
const { register, control, errors } = useForm(schema);
@@ -41,44 +43,57 @@ export const CreateContactPage = () => {
handleNext();
};
+ const breadcrumbs = [
+ { href: "/", title: "Accueil" },
+ { href: "/search", title: "Recherche" },
+ "Nouveau contact",
+ ];
+
return (