diff --git a/apps/sim/app/(landing)/components/hero/components/hero-header/hero-header.tsx b/apps/sim/app/(landing)/components/hero/components/hero-header/hero-header.tsx index d06e6ca7a88..c2e9b566956 100644 --- a/apps/sim/app/(landing)/components/hero/components/hero-header/hero-header.tsx +++ b/apps/sim/app/(landing)/components/hero/components/hero-header/hero-header.tsx @@ -6,12 +6,6 @@ import { LANDING_HERO_CTA_GAP } from '@/app/(landing)/components/landing-layout' interface LandingHeroHeaderProps { description: string - /** - * Optional second paragraph beneath the description - a self-contained - * definition of the page's subject, kept quotable for answer engines (GEO). - * Omitted by the homepage, so its hero renders unchanged. - */ - definition?: string eyebrow?: ReactNode heading: ReactNode headingId: string @@ -23,7 +17,6 @@ interface LandingHeroHeaderProps { */ export function LandingHeroHeader({ description, - definition, eyebrow, heading, headingId, @@ -44,12 +37,6 @@ export function LandingHeroHeader({ {description}
- {definition ? ( -- {definition} -
- ) : null} -