Skip to content

Commit bad62c1

Browse files
committed
Rollback Feature Until Release
1 parent 73d0b1d commit bad62c1

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

my-app/src/App.jsx

Lines changed: 2 additions & 2 deletions
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>

my-app/src/data.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +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" },
78
];
89
export { navigation };

0 commit comments

Comments
 (0)