Skip to content

Commit a3b429c

Browse files
committed
feat: updated the text in home page, remove edges in 3d-graph, and move search bar label further up
1 parent c7ba7f8 commit a3b429c

5 files changed

Lines changed: 1335 additions & 1001 deletions

File tree

src/components/HomePageComponents/Section1.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import ArrowCircleDownIcon from "@mui/icons-material/ArrowCircleDown";
2-
import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
2+
// import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
33
import SearchIcon from "@mui/icons-material/Search";
44
import {
55
Typography,
@@ -94,8 +94,7 @@ const Section1: React.FC<Section1Props> = ({ scrollToNext }) => {
9494
},
9595
}}
9696
>
97-
Efficiently manage and explore your databases and datasets with
98-
ease.
97+
Search Findable, Accessible, Interoperable, and Reusable datasets.
9998
</Typography>
10099
</Box>
101100
</Grid>
@@ -128,6 +127,7 @@ const Section1: React.FC<Section1Props> = ({ scrollToNext }) => {
128127
"& label.Mui-focused": {
129128
color: Colors.darkGreen, // label color when focused
130129
fontWeight: "bold",
130+
transform: "translate(12px, -22px) scale(0.75)", // translate(x, y) move label further up
131131
padding: "5px",
132132
borderRadius: "5px",
133133
},

src/modules/universe/NeuroJsonGraph.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,7 @@ const NeuroJsonGraph: React.FC<{
176176
.graphData(graphData)
177177
.nodeRelSize(1)
178178
.nodeColor((node) => (node as NodeObject).color)
179+
.linkVisibility(() => false)
179180
.linkWidth(1)
180181
.backgroundColor("rgba(0,0,0,0)")
181182
.nodeLabel("name")

src/redux/neurojson/neurojson.slice.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ import {
99
} from "./neurojson.action";
1010
import { DBDatafields, INeuroJsonState } from "./types/neurojson.interface";
1111
import { createSlice, PayloadAction } from "@reduxjs/toolkit";
12-
import { stat } from "fs";
12+
13+
// import { stat } from "fs";
1314

1415
const initialState: INeuroJsonState = {
1516
loading: false,

src/utils/.preview.js.swp

-16 KB
Binary file not shown.

0 commit comments

Comments
 (0)