Mobile Navbar #75

Merged
a258wang merged 17 commits from feat/navbar-mobile into main 2021-07-07 18:13:40 -04:00
1 changed files with 6 additions and 11 deletions
Showing only changes of commit 6673f207d0 - Show all commits

View File

@ -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 (
<Head>
<meta http-equiv="refresh" content="0;url=/resources/services" />
</Head>
);
}