diff --git a/frontend/src/Routes.tsx b/frontend/src/Routes.tsx
index 4778161f2..71a8516f2 100644
--- a/frontend/src/Routes.tsx
+++ b/frontend/src/Routes.tsx
@@ -20,7 +20,7 @@ const ViewSchedule = () => import('./app/Scheduler/ViewSchedule');
const PrivacyPolicy = () => import('./views/PrivacyPolicy');
const TermsOfService = () => import('./views/TermsOfService');
const RedirectLink = () => import('./views/RedirectLink');
-const Apply = () => import('./views/Apply');
+// const Apply = () => import('./views/Apply');
function ScheduleRedirect() {
const { scheduleId } = useParams();
@@ -50,7 +50,7 @@ const router = createBrowserRouter([
{ path: '/legal/privacy', lazy: PrivacyPolicy },
{ path: '/legal/terms', lazy: TermsOfService },
{ path: '/redirect', lazy: RedirectLink },
- { path: '/apply', lazy: Apply }
+ // { path: '/apply', lazy: Apply }
]
},
{
diff --git a/frontend/src/components/Common/Layout.tsx b/frontend/src/components/Common/Layout.tsx
index e67cb2b12..21793ca04 100644
--- a/frontend/src/components/Common/Layout.tsx
+++ b/frontend/src/components/Common/Layout.tsx
@@ -1,7 +1,7 @@
import { Suspense, useEffect } from 'react';
import { Outlet, useLocation } from 'react-router-dom';
import ReactGA from 'react-ga';
-import Banner from './Banner';
+// import Banner from './Banner';
import Navigation from './Navigation';
import BTLoader from './BTLoader';
import Footer from './Footer';
@@ -26,7 +26,7 @@ export default function RootLayout({ footer }: LayoutProps) {
return (
<>
-