-
-
-
+
+ {/* Added some styling for better visualization */}
+ {LANGUAGES.map((lang) => (
+
+ ))}
);
});
diff --git a/src/widgets/ReactMarkdown/index.tsx b/src/widgets/ReactMarkdown/index.tsx
index 68eddfd..81493fa 100644
--- a/src/widgets/ReactMarkdown/index.tsx
+++ b/src/widgets/ReactMarkdown/index.tsx
@@ -12,17 +12,16 @@ export const ReactMarkdownComponent = ({ value }: { value: string }) => {
borderRadius: 1,
},
"& h1, & h2, & h3, & h4, & h5, & h6": {
- color: "primary.main",
+ color: "white",
mt: 2,
mb: 1,
},
"& p": {
mb: 2,
- color: (theme) =>
- theme.palette.mode === "dark" ? "grey.300" : "grey.800",
+ color: "white",
},
"& a": {
- color: "primary.main",
+ color: "white",
textDecoration: "none",
"&:hover": {
textDecoration: "underline",
diff --git a/src/widgets/SightEdit/index.tsx b/src/widgets/SightEdit/index.tsx
index 890a440..c31568a 100644
--- a/src/widgets/SightEdit/index.tsx
+++ b/src/widgets/SightEdit/index.tsx
@@ -1,7 +1,7 @@
-import { Unlink } from "lucide-react";
+import { ImagePlus, Unlink } from "lucide-react";
import { Trash2 } from "lucide-react";
-import { TextField } from "@mui/material";
+import { Box, TextField } from "@mui/material";
import { ReactMarkdownEditor } from "@widgets";
export const SightEdit = () => {
@@ -24,9 +24,52 @@ export const SightEdit = () => {