From f13451046e0e8db061c9aac902e8d7ce158e4a85 Mon Sep 17 00:00:00 2001
From: Saket Aryan <94069182+whysosaket@users.noreply.github.com>
Date: Fri, 27 Sep 2024 01:28:01 +0530
Subject: [PATCH] DIsabled Newsletter
---
my-app/src/App.jsx | 4 ++--
my-app/src/data.js | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
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 };