diff --git a/src/modals/sections/ProjectModal.js b/src/modals/sections/ProjectModal.js
index 04728db5..e3e83164 100644
--- a/src/modals/sections/ProjectModal.js
+++ b/src/modals/sections/ProjectModal.js
@@ -52,10 +52,18 @@ const ProjectModal = () => {
+
+
(
-
-
-
-
{item.title}
- {item.link && (
-
- {item.link}
-
- )}
+const ProjectItem = ({ item, language }) => {
+ const { t } = useTranslation();
+ return (
+
+
+
+ {item.date && (
+
+ (
+ {formatDateRange(
+ {
+ startDate: item.date,
+ endDate: item.endDate,
+ language,
+ },
+ t,
+ )}
+ )
+
+ )}
- {item.date && (
-
- {formatDate({ date: item.date, language })}
-
+ {item.summary && (
+
)}
- {item.summary && (
-
- )}
-
-);
+ );
+};
const ProjectsA = () => {
const { data, heading: Heading } = useContext(PageContext);