+
+
+
+ {t("editMetadata.dRepName")}
+
+
+ {t("editMetadata.dRepNameDescription")}
+
+
+
+
+
+
+
+ {t("editMetadata.aboutYou")}
+
+
+ {t("editMetadata.aboutYouDescription")}
+
+
+
+
+
+
+
+ {t("editMetadata.linksDescription")}
+
+ {t("editMetadata.maximumLinks", {
+ numberOfLinks: MAX_NUMBER_OF_LINKS,
+ })}
+
+
+
+ {renderLinks()}
+ {links?.length < MAX_NUMBER_OF_LINKS ? (
+
+ ) : null}
+
+
+ );
+};
diff --git a/govtool/frontend/src/components/organisms/EditDRepInfoSteps/EditDRepStorageInformation.tsx b/govtool/frontend/src/components/organisms/EditDRepInfoSteps/EditDRepStorageInformation.tsx
new file mode 100644
index 000000000..5a7b6293c
--- /dev/null
+++ b/govtool/frontend/src/components/organisms/EditDRepInfoSteps/EditDRepStorageInformation.tsx
@@ -0,0 +1,129 @@
+import { Dispatch, SetStateAction, useEffect } from "react";
+import { Box } from "@mui/material";
+import OpenInNewIcon from "@mui/icons-material/OpenInNew";
+
+import { Button, Spacer, Typography } from "@atoms";
+import { ICONS, Rules } from "@consts";
+import {
+ useEditDRepInfoForm,
+ useTranslation,
+ useScreenDimension,
+} from "@hooks";
+import { Step } from "@molecules";
+import { BgCard, ControlledField } from "@organisms";
+import { openInNewTab } from "@utils";
+
+type StorageInformationProps = {
+ setStep: Dispatch