calcom/pages/index.tsx

12 lines
192 B
TypeScript

export default function Home() {
return null;
}
export async function getStaticProps() {
return {
redirect: {
destination: "/event-types",
permanent: false,
},
};
}