removed link from cal video (#5228)

* removed link from cal video

* nit
pull/5237/head
Peer Richelsen 2022-10-26 14:31:19 +01:00 committed by GitHub
parent f2cdb75f91
commit 5a0e4c8726
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 15 deletions

View File

@ -2,7 +2,6 @@ import DailyIframe from "@daily-co/daily-js";
import { NextPageContext } from "next"; import { NextPageContext } from "next";
import { getSession } from "next-auth/react"; import { getSession } from "next-auth/react";
import Head from "next/head"; import Head from "next/head";
import Link from "next/link";
import { useEffect } from "react"; import { useEffect } from "react";
import { SEO_IMG_OGIMG_VIDEO, WEBSITE_URL } from "@calcom/lib/constants"; import { SEO_IMG_OGIMG_VIDEO, WEBSITE_URL } from "@calcom/lib/constants";
@ -64,20 +63,15 @@ export default function JoinCall(props: JoinCallPageProps) {
<meta property="twitter:description" content={t("quick_video_meeting")} /> <meta property="twitter:description" content={t("quick_video_meeting")} />
</Head> </Head>
<div style={{ zIndex: 2, position: "relative" }}> <div style={{ zIndex: 2, position: "relative" }}>
<Link href="/" passHref> <img
{ className="h-5·w-auto fixed z-10 hidden sm:inline-block"
// eslint-disable-next-line @next/next/no-img-element src={`${WEBSITE_URL}/cal-logo-word-dark.svg`}
<img alt="Cal.com Logo"
className="h-5·w-auto fixed z-10 hidden sm:inline-block" style={{
src={`${WEBSITE_URL}/cal-logo-word-dark.svg`} top: 46,
alt="Cal.com Logo" left: 24,
style={{ }}
top: 46, />
left: 24,
}}
/>
}
</Link>
</div> </div>
</> </>
); );