We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ff26d4a + 32aa911 commit 5131fe8Copy full SHA for 5131fe8
src/components/NavBar/NavItems.tsx
@@ -88,10 +88,11 @@ const NavItems: React.FC = () => {
88
>
89
{[
90
// { text: "ABOUT", url: "https://neurojson.org/Doc/Start" },
91
- { text: "ABOUT", url: RoutesEnum.ABOUT },
92
- { text: "WIKI", url: "https://neurojson.org/Wiki" },
93
- { text: "SEARCH", url: RoutesEnum.SEARCH },
94
- { text: "DATABASES", url: RoutesEnum.DATABASES },
+ { text: "About", url: RoutesEnum.ABOUT },
+ { text: "Wiki", url: "https://neurojson.org/Wiki" },
+ { text: "Search", url: RoutesEnum.SEARCH },
+ { text: "Databases", url: RoutesEnum.DATABASES },
95
+ { text: "V1", url: "https://neurojson.io/v1" },
96
].map(({ text, url }) => (
97
<Grid item key={text}>
98
{url?.startsWith("https") ? (
@@ -104,6 +105,7 @@ const NavItems: React.FC = () => {
104
105
<Typography
106
align="center"
107
fontWeight={600}
108
+ textTransform="uppercase"
109
lineHeight={"1.5rem"}
110
letterSpacing={"0.05rem"}
111
sx={{
0 commit comments