diff --git a/pages/resources/index.tsx b/pages/resources/index.tsx index 8f892bd4..f496b8e5 100644 --- a/pages/resources/index.tsx +++ b/pages/resources/index.tsx @@ -1,14 +1,9 @@ -import { GetStaticProps } from "next"; - -export const getStaticProps: GetStaticProps<{}> = async () => { - return { - redirect: { - destination: "/resources/services", - permanent: false, - }, - }; -}; +import Head from "next/head"; export default function Resources() { - return null; + return ( + + + + ); }