www-new/pages/get-started.tsx

11 lines
211 B
TypeScript
Raw Normal View History

import Head from "next/head";
import React from "react";
export default function GetStartedRedirect() {
return (
<Head>
<meta httpEquiv="refresh" content="0;url=/get-involved" />
</Head>
);
}