-
-
- {selectedImage + 1} {t("of")} {tabItems.find(tab => tab.id === selectedTab)?.images.length}
+
+
+ {
+ tabItems
+ .find(tab => tab.id === selectedTab)
+ ?.images.find((_, index: number) => index === selectedImage)?.title
+ }
+
+
+ {
+ tabItems
+ .find(tab => tab.id === selectedTab)
+ ?.images.find((_, index: number) => index === selectedImage)?.dateCreated
+ }
+
+
+
+
+ {
+ tabItems
+ .find(tab => tab.id === selectedTab)
+ ?.images.find((_, index: number) => index === selectedImage)?.geoTag
+ }
+ />
+
+
+ {selectedImage + 1} of {tabItems.find(tab => tab.id === selectedTab)?.images.length}
+
+
)}
items={tabItems.find(tab => tab.id === selectedTab)?.images ?? []}
diff --git a/tailwind.config.js b/tailwind.config.js
index f56091ccd..98ae2d35a 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -131,6 +131,7 @@ module.exports = {
700: "#092C3C",
600: "#33525c",
250: "#11093C",
+ 200: "#E6E9EC",
100: "#cfe6f4",
50: "#f1fafd",
10: "#eaf7fc"
@@ -172,7 +173,11 @@ module.exports = {
DEFAULT: "#FCFBE8",
500: "#F3EFB0"
},
- red: "#FF6464"
+ red: {
+ DEFAULT: "#FF6464",
+ 100: "#CBC8D2",
+ 200: "#E42222"
+ }
},
boxShadow: {
DEFAULT: "0px 4px 16px rgba(0, 0, 0, 0.12)",