"use client"; import Head from "next/head"; import type { inferSSRProps } from "@calcom/types/inferSSRProps"; import { getServerSideProps } from "./getServerSideProps"; export default function Router({ form, message }: inferSSRProps) { return ( <> {form.name} | Cal.com Forms
{message}
); } export { getServerSideProps };