Skip to content

Commit 5131fe8

Browse files
authored
Merge pull request #70 from NeuroJSON/fangq
Add V1 link to home page nav bar
2 parents ff26d4a + 32aa911 commit 5131fe8

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/components/NavBar/NavItems.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,11 @@ const NavItems: React.FC = () => {
8888
>
8989
{[
9090
// { 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 },
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 },
95+
{ text: "V1", url: "https://neurojson.io/v1" },
9596
].map(({ text, url }) => (
9697
<Grid item key={text}>
9798
{url?.startsWith("https") ? (
@@ -104,6 +105,7 @@ const NavItems: React.FC = () => {
104105
<Typography
105106
align="center"
106107
fontWeight={600}
108+
textTransform="uppercase"
107109
lineHeight={"1.5rem"}
108110
letterSpacing={"0.05rem"}
109111
sx={{

0 commit comments

Comments
 (0)