diff --git a/frontend/src/pages/about.tsx b/frontend/src/pages/about.tsx deleted file mode 100644 index bb63aa9f..00000000 --- a/frontend/src/pages/about.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import type { NextPage } from "next"; -import { useEffect } from "react"; - -import { MainLayout } from "~/components/layouts"; - -const About: NextPage = () => { - useEffect(() => { - window.location.href = - "https://neurofusionresearchinc.notion.site/NEUROFUSION-Team-39887d6b988c4c83ae2a16ae8db44a45"; - }, []); - - return ; -}; - -(About as any).theme = "dark"; - -export default About; diff --git a/frontend/src/pages/download.tsx b/frontend/src/pages/download.tsx deleted file mode 100644 index e69de29b..00000000 diff --git a/frontend/src/pages/funding.tsx b/frontend/src/pages/funding.tsx deleted file mode 100644 index 2dd6e12f..00000000 --- a/frontend/src/pages/funding.tsx +++ /dev/null @@ -1 +0,0 @@ -// etc, btc, stripe, github sponsors. diff --git a/frontend/src/pages/pricing.tsx b/frontend/src/pages/pricing.tsx deleted file mode 100644 index e69de29b..00000000 diff --git a/frontend/src/pages/research.tsx b/frontend/src/pages/research.tsx deleted file mode 100644 index e69de29b..00000000 diff --git a/frontend/src/pages/team.tsx b/frontend/src/pages/team.tsx deleted file mode 100644 index 180f4c49..00000000 --- a/frontend/src/pages/team.tsx +++ /dev/null @@ -1,16 +0,0 @@ -import type { NextPage } from "next"; -import { TeamSection } from "~/components/features/landing"; - -import { MainLayout } from "~/components/layouts"; - -const Team: NextPage = () => { - return ( - - - - ); -}; - -(Team as any).theme = "light"; - -export default Team;