Skip to content

Commit 0370866

Browse files
authored
Merge pull request #45 from whysosaket/main
x
2 parents e88c01b + ff9fe1b commit 0370866

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: my-app/src/App.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import Events from "./pages/Events";
88
import Base from "./layouts/Base";
99
import Subscribe from "./components/Subscribe";
1010
import { useState } from "react";
11-
import NewsletterPage from "./pages/NewsletterPage";
11+
// import NewsletterPage from "./pages/NewsletterPage";
1212

1313
export default function App() {
1414
const [isVisible, setIsVisible] = useState(false);
@@ -28,7 +28,7 @@ export default function App() {
2828
<Route path="/community" element={<Community />} />
2929
<Route path="/events" element={<Events />} />
3030
<Route path="/contact-us" element={<ContactForm />} />
31-
<Route path="/newsletter" element={<NewsletterPage />} />
31+
{/* <Route path="/newsletter" element={<NewsletterPage />} /> */}
3232
<Route path="*" element={<NotFound />} />
3333
</Routes>
3434
</Base>

Diff for: my-app/src/data.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ const navigation = [
22
{ name: "Home", to: "/" },
33
{ name: "Community", to: "/community" },
44
{ name: "Events", to: "/events" },
5-
{ name: "Newsletter", to: "/newsletter" },
5+
// { name: "Newsletter", to: "/newsletter" },
66
{ name: "About us", to: "about-us" },
7-
// { name: "Contact us", to: "/contact-us" },
7+
{ name: "Contact us", to: "/contact-us" },
88
];
99
export { navigation };

0 commit comments

Comments
 (0)