Skip to content

Commit

Permalink
fix(web): remove noindex & nofollow tags from the App and `Shel…
Browse files Browse the repository at this point in the history
…l` components (#6816)

Fixes #6815
  • Loading branch information
p6l-richard authored and zomars committed Feb 8, 2023
1 parent 70f009c commit 4ecad3f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
6 changes: 1 addition & 5 deletions apps/web/components/apps/App.tsx
Expand Up @@ -210,7 +210,7 @@ const Component = ({
</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>
<span>
{price === 0 ? (
Expand Down Expand Up @@ -336,10 +336,6 @@ export default function App(props: {
title={props.name}
description={props.description}
app={{ slug: props.logo, name: props.name, description: props.description }}
nextSeoProps={{
nofollow: true,
noindex: true,
}}
/>
{props.licenseRequired ? (
<LicenseRequired>
Expand Down
4 changes: 0 additions & 4 deletions packages/features/shell/Shell.tsx
Expand Up @@ -134,10 +134,6 @@ const Layout = (props: LayoutProps) => {
<HeadSeo
title={pageTitle ?? APP_NAME}
description={props.subtitle ? props.subtitle?.toString() : ""}
nextSeoProps={{
nofollow: true,
noindex: true,
}}
/>
)}
<div>
Expand Down

0 comments on commit 4ecad3f

Please sign in to comment.