From 6673f207d0255071e58b2023794e64f21a8b95a9 Mon Sep 17 00:00:00 2001 From: Amy Date: Wed, 30 Jun 2021 22:04:57 -0400 Subject: [PATCH] Fix redirect from /resources to /resources/services using meta refresh --- pages/resources/index.tsx | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) 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 ( + + + + ); }