File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import Events from "./pages/Events";
8
8
import Base from "./layouts/Base" ;
9
9
import Subscribe from "./components/Subscribe" ;
10
10
import { useState } from "react" ;
11
- import NewsletterPage from "./pages/NewsletterPage" ;
11
+ // import NewsletterPage from "./pages/NewsletterPage";
12
12
13
13
export default function App ( ) {
14
14
const [ isVisible , setIsVisible ] = useState ( false ) ;
@@ -28,7 +28,7 @@ export default function App() {
28
28
< Route path = "/community" element = { < Community /> } />
29
29
< Route path = "/events" element = { < Events /> } />
30
30
< Route path = "/contact-us" element = { < ContactForm /> } />
31
- < Route path = "/newsletter" element = { < NewsletterPage /> } />
31
+ { /* <Route path="/newsletter" element={<NewsletterPage />} /> */ }
32
32
< Route path = "*" element = { < NotFound /> } />
33
33
</ Routes >
34
34
</ Base >
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ const navigation = [
2
2
{ name : "Home" , to : "/" } ,
3
3
{ name : "Community" , to : "/community" } ,
4
4
{ name : "Events" , to : "/events" } ,
5
- { name : "Newsletter" , to : "/newsletter" } ,
5
+ // { name: "Newsletter", to: "/newsletter" },
6
6
{ name : "About us" , to : "about-us" } ,
7
- // { name: "Contact us", to: "/contact-us" },
7
+ { name : "Contact us" , to : "/contact-us" } ,
8
8
] ;
9
9
export { navigation } ;
You can’t perform that action at this time.
0 commit comments