-
Notifications
You must be signed in to change notification settings - Fork 8.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: tech debt clearing — remove HeadSeo from components where not needed #19151
chore: tech debt clearing — remove HeadSeo from components where not needed #19151
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
2 Skipped Deployments
|
@@ -337,7 +327,6 @@ export default function Signup({ | |||
"[--cal-brand-emphasis:#101010] dark:[--cal-brand-emphasis:#e1e1e1] " | |||
)}> | |||
<div className="bg-muted 2xl:border-subtle grid w-full max-w-[1440px] grid-cols-1 grid-rows-1 overflow-hidden lg:grid-cols-2 2xl:rounded-[20px] 2xl:border 2xl:py-6"> | |||
<HeadSeo title={t("sign_up")} description={t("sign_up")} /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
app/signup/page.tsx
has generateMetadata replacing this
@@ -14,11 +13,6 @@ const ShellHeading = () => { | |||
export default function WrappedApp(props: AppPageProps) { | |||
return ( | |||
<Shell smallHeading isPublic hideHeadingOnMobile heading={<ShellHeading />} backPath="/apps" withoutSeo> | |||
<HeadSeo |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
app/apps/[slug]/page.tsx
has generateMetadata replacing this
Graphite Automations"Add consumer team as reviewer" took an action on this PR • (02/07/25)1 reviewer was added to this PR based on Keith Williams's automation. |
0e218d3
to
981b8e0
Compare
E2E results are ready! |
What does this PR do?
HeadSeo
for pages already migrated to App Router (we don't need it because in App RoutergenerateMetadata
handles it)Mandatory Tasks (DO NOT REMOVE)