diff --git a/my-app/src/App.jsx b/my-app/src/App.jsx index 02cc783..1856ad5 100644 --- a/my-app/src/App.jsx +++ b/my-app/src/App.jsx @@ -8,7 +8,7 @@ import Events from "./pages/Events"; import Base from "./layouts/Base"; import Subscribe from "./components/Subscribe"; import { useState } from "react"; -import NewsletterPage from "./pages/NewsletterPage"; +// import NewsletterPage from "./pages/NewsletterPage"; export default function App() { const [isVisible, setIsVisible] = useState(false); @@ -28,7 +28,7 @@ export default function App() { } /> } /> } /> - } /> + {/* } /> */} } /> diff --git a/my-app/src/data.js b/my-app/src/data.js index dad38a9..1dd8c39 100644 --- a/my-app/src/data.js +++ b/my-app/src/data.js @@ -2,8 +2,8 @@ const navigation = [ { name: "Home", to: "/" }, { name: "Community", to: "/community" }, { name: "Events", to: "/events" }, - { name: "Newsletter", to: "/newsletter" }, + // { name: "Newsletter", to: "/newsletter" }, { name: "About us", to: "about-us" }, - // { name: "Contact us", to: "/contact-us" }, + { name: "Contact us", to: "/contact-us" }, ]; export { navigation };