fix(web): remove `noindex` & `nofollow` tags from the `App` and `Shell` components (#6816)
Fixes https://github.com/calcom/cal.com/issues/6815pull/6725/head^2
parent
4db4df8ace
commit
c7471b404c
|
@ -210,7 +210,7 @@ const Component = ({
|
||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<div className="prose prose-sm mt-8">{body}</div>
|
<div className="prose-sm prose mt-8">{body}</div>
|
||||||
<h4 className="mt-8 font-semibold text-gray-900 ">{t("pricing")}</h4>
|
<h4 className="mt-8 font-semibold text-gray-900 ">{t("pricing")}</h4>
|
||||||
<span>
|
<span>
|
||||||
{price === 0 ? (
|
{price === 0 ? (
|
||||||
|
@ -336,10 +336,6 @@ export default function App(props: {
|
||||||
title={props.name}
|
title={props.name}
|
||||||
description={props.description}
|
description={props.description}
|
||||||
app={{ slug: props.logo, name: props.name, description: props.description }}
|
app={{ slug: props.logo, name: props.name, description: props.description }}
|
||||||
nextSeoProps={{
|
|
||||||
nofollow: true,
|
|
||||||
noindex: true,
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
{props.licenseRequired ? (
|
{props.licenseRequired ? (
|
||||||
<LicenseRequired>
|
<LicenseRequired>
|
||||||
|
|
|
@ -134,10 +134,6 @@ const Layout = (props: LayoutProps) => {
|
||||||
<HeadSeo
|
<HeadSeo
|
||||||
title={pageTitle ?? APP_NAME}
|
title={pageTitle ?? APP_NAME}
|
||||||
description={props.subtitle ? props.subtitle?.toString() : ""}
|
description={props.subtitle ? props.subtitle?.toString() : ""}
|
||||||
nextSeoProps={{
|
|
||||||
nofollow: true,
|
|
||||||
noindex: true,
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
<div>
|
<div>
|
||||||
|
|
Loading…
Reference in New Issue