Skip to content

Commit e83d0a4

Browse files
authored
Merge pull request #44 from codeXsit/codex-24-pageNotFound
feat: Page not found page
2 parents 3bb4dc4 + 7294a51 commit e83d0a4

File tree

6 files changed

+436
-14
lines changed

6 files changed

+436
-14
lines changed

src/App.jsx

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,18 @@ import { ToastContainer } from "react-toastify";
33
import routes from "@/routes/index";
44
import Navbar from "@/components/Navbar/index";
55

6-
7-
86
const navLinks = [
9-
{name: "About Us", path: "/about-us"},
10-
{name: "Our Team", path: "/teams"},
11-
{name: "Gallery", path: "/gallery"},
12-
{name: "Contact", path: "/contact"},
13-
{name: "Projects", path: "/projects"}
14-
7+
{ name: "About Us", path: "/about-us" },
8+
{ name: "Our Team", path: "/teams" },
9+
{ name: "Gallery", path: "/gallery" },
10+
{ name: "Contact", path: "/contact" },
11+
{ name: "Community", path: "/community" },
1512
];
1613

1714
function App() {
1815
return (
1916
<Router>
20-
<Navbar links={navLinks}/>
17+
<Navbar links={navLinks} />
2118

2219
<ToastContainer />
2320
<Routes>

0 commit comments

Comments
 (0)