feat: Add edit/create/list sight page

This commit is contained in:
2025-05-29 16:25:18 +03:00
parent 17de7e495f
commit e2ca6b4132
25 changed files with 1519 additions and 240 deletions

View File

@ -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",