Skip to content

Commit 75031fe

Browse files
authored
Merge pull request #104 from dzcode-io/bugfix/103-contact-us-url
🐞 fixed contact us url
2 parents 7e447eb + 37b1135 commit 75031fe

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

β€Žfrontend/src/apps/main/entry/index.tsxβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const navItems = [
2525
{ id: 2, to: "/contribute", name: "Contribute" },
2626
{ id: 3, to: "/projects", name: "Projects" },
2727
{ id: 4, to: "/articles", name: "Articles" },
28-
{ id: 5, to: "/contact", name: "Contact" },
28+
{ id: 5, to: "/Contact-Us", name: "Contact" },
2929
];
3030

3131
// Temp Footer Data
@@ -87,7 +87,7 @@ export const App: React.SFC<{}> = () => {
8787
<Route path="/Learn" component={Learn} />
8888
<Route path="/Articles" component={Articles} />
8989
<Route path="/Projects" component={Projects} />
90-
<Route path="/Contact" component={Contact} />
90+
<Route path="/Contact-Us" component={Contact} />
9191
<Route render={() => <Redirect to="/" />} />
9292
</Switch>
9393
</Suspense>

β€Žfrontend/src/apps/main/scenes/learn/content/index.tsxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const socialMedia = [
1515
icon: github,
1616
},
1717
{ id: 2, name: "Learn", href: "/learn", icon: programer },
18-
{ id: 3, name: "Contact", href: "/contact", icon: contact },
18+
{ id: 3, name: "Contact", href: "/Contact-Us", icon: contact },
1919
{ id: 4, name: "Support", href: "/support", icon: support },
2020
];
2121

β€Žfrontend/src/apps/main/scenes/projects/details/index.tsxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const socialMedia = [
1515
icon: github,
1616
},
1717
{ id: 2, name: "Learn", href: "/learn", icon: programer },
18-
{ id: 3, name: "Contact", href: "/contact", icon: contact },
18+
{ id: 3, name: "Contact", href: "/Contact-Us", icon: contact },
1919
{ id: 4, name: "Support", href: "/support", icon: support },
2020
];
2121

0 commit comments

Comments
Β (0)