diff --git a/packages/web/pages/community/forum.tsx b/packages/web/pages/community/forum.tsx
deleted file mode 100644
index b79411bf..00000000
--- a/packages/web/pages/community/forum.tsx
+++ /dev/null
@@ -1,37 +0,0 @@
-import { PageContainer } from 'components/Container';
-import { HeadComponent } from 'components/Seo';
-import React, { useEffect, useState } from 'react';
-
-import { descriptions } from '../../utils/menuLinks';
-
-const ForumPage: React.FC = () => {
- // need to ensure that the menu height is calculated on client
- const [isComponentMounted, setIsComponentMounted] = useState(false);
- useEffect(() => setIsComponentMounted(true), []);
- if (!isComponentMounted) {
- return null;
- }
-
- const megamenuHeight =
- document.getElementById('MegaMenu')?.offsetHeight || 81; // ugly solution, but i couldn't find a better way to set the right height of the iframe
-
- return (
-
-
-
-
- );
-};
-
-export default ForumPage;
diff --git a/packages/web/pages/learn/welcome.tsx b/packages/web/pages/learn/welcome.tsx
deleted file mode 100644
index 0c406f18..00000000
--- a/packages/web/pages/learn/welcome.tsx
+++ /dev/null
@@ -1,37 +0,0 @@
-import { PageContainer } from 'components/Container';
-import { HeadComponent } from 'components/Seo';
-import React, { useEffect, useState } from 'react';
-
-import { descriptions } from '../../utils/menuLinks';
-
-const ForumPage: React.FC = () => {
- // need to ensure that the menu height is calculated on client
- const [isComponentMounted, setIsComponentMounted] = useState(false);
- useEffect(() => setIsComponentMounted(true), []);
- if (!isComponentMounted) {
- return null;
- }
-
- const megamenuHeight =
- document.getElementById('MegaMenu')?.offsetHeight || 81; // ugly solution, but i couldn't find a better way to set the right height of the iframe
-
- return (
-
-
-
-
- );
-};
-
-export default ForumPage;
diff --git a/packages/web/pages/learn/youtube.tsx b/packages/web/pages/learn/youtube.tsx
deleted file mode 100644
index 72e2e48d..00000000
--- a/packages/web/pages/learn/youtube.tsx
+++ /dev/null
@@ -1,37 +0,0 @@
-import { PageContainer } from 'components/Container';
-import { HeadComponent } from 'components/Seo';
-import React, { useEffect, useState } from 'react';
-
-import { descriptions } from '../../utils/menuLinks';
-
-const YoutubePage: React.FC = () => {
- // need to ensure that the menu height is calculated on client
- const [isComponentMounted, setIsComponentMounted] = useState(false);
- useEffect(() => setIsComponentMounted(true), []);
- if (!isComponentMounted) {
- return null;
- }
-
- const megamenuHeight =
- document.getElementById('MegaMenu')?.offsetHeight || 81; // ugly solution, but i couldn't find a better way to set the right height of the iframe
-
- return (
-
-
-
-
- );
-};
-
-export default YoutubePage;