Skip to content

feat(landing): extend enterprise product-preview design to solutions and workflows pages#5672

Open
andresdjasso wants to merge 4 commits into
stagingfrom
solutions-platform-product-pages
Open

feat(landing): extend enterprise product-preview design to solutions and workflows pages#5672
andresdjasso wants to merge 4 commits into
stagingfrom
solutions-platform-product-pages

Conversation

@andresdjasso

Copy link
Copy Markdown
Contributor

Summary

  • Parametrizes the enterprise feature graphics with content props (the enterprise page renders identically) and adds five new graphics in the same visual vocabulary: document draft, knowledge answer, reconcile, workflow canvas, and agent code
  • Retells each page's feature blocs for its domain — per-page use cases across build/deploy/govern stories for the five Solutions pages (engineering, it, compliance, finance, hr) and the Workflows platform page
  • Adds a hero category tag (eyebrow) to each page: Engineering / IT / Compliance / Finance / HR / Workflows
  • Adds full animated platform-UI heroes on all six pages: solutions pages replay the enterprise platform loop with domain-specific workspaces, prompts, and workflows; workflows shows a chat-free editor-canvas loop assembling a support-routing workflow (with a graphite selection ring, not the editor blue)
  • Overhauls the shared feature-tile system for responsiveness: container-query proportional scaling (tiles shrink as true miniatures at narrow columns, replacing per-graphic scale hacks), a full-width wide treatment for the orphan third card of 3-card rows in the 2-col band (per-graphic wide layouts), and an opt-in 2×2 grid for the workflows deploy row (columns: 2)
  • Appends the shared pre-footer CTA band to all six pages via SolutionsPage
  • Fix: the dark code tile's unhighlighted code text now uses light graphite instead of inheriting near-black

Test plan

  • Eyeball at localhost: /enterprise, /solutions/engineering, /solutions/it, /solutions/compliance, /solutions/finance, /solutions/hr, /workflows
  • Verify the enterprise page is visually unchanged
  • 1280px desktop: full 3-col feature rows, animated heroes loop correctly on all six pages
  • ~900px and ~700px (2-col band): third tile of 3-card rows takes the full-width wide treatment; tiles scale proportionally as miniatures
  • ~500px (single column): tiles remain legible miniatures with container-query scaling
  • Workflows deploy row renders as a 2×2 grid
  • Pre-footer CTA band appears on all six pages

Made with Cursor

…and workflows pages

Parametrize enterprise feature graphics with content props and retell each
solutions page's feature blocs for its domain (engineering, it, compliance,
finance, hr) plus the workflows platform page. Add five new graphics in the
same visual vocabulary, animated platform-UI heroes with domain-specific
loops on all six pages, hero category tags, container-query proportional
tile scaling with wide/2x2 layout options, and a shared pre-footer CTA band.
Enterprise page renders identically.

Co-authored-by: Cursor <cursoragent@cursor.com>
@vercel

vercel Bot commented Jul 14, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

1 Skipped Deployment
Project Deployment Actions Updated (UTC)
docs Skipped Skipped Jul 14, 2026 1:17pm

Request Review

@greptile-apps

greptile-apps Bot commented Jul 14, 2026

Copy link
Copy Markdown
Contributor

Greptile Summary

This PR extends the enterprise landing-page visual system to Solutions and Workflows. The main changes are:

  • Shared platform hero framing for Solutions and Workflows pages.
  • Parametrized enterprise hero loop content and feature graphics.
  • New domain-specific landing graphics for documents, knowledge answers, reconciliation, workflow canvas, and code.
  • Responsive feature-tile scaling, tablet-wide orphan-card handling, and an optional 2-column row layout.
  • Shared pre-footer CTA placement through SolutionsPage.

Confidence Score: 5/5

This looks safe to merge.

  • No blocking issues found in the changed code.

Important Files Changed

Filename Overview
apps/sim/app/(landing)/components/solutions-page/components/solutions-card-row/components/solutions-card/solutions-card.tsx Adds the scaled feature-tile canvas and tablet-wide card treatment.
apps/sim/app/(landing)/components/solutions-page/components/solutions-card-row/solutions-card-row.tsx Adds optional 2-column rows and passes tablet-span state to feature tiles.
apps/sim/app/(landing)/components/solutions-page/solutions-page.tsx Wraps page content in the shared landing width and appends the shared CTA.
apps/sim/app/(landing)/enterprise/components/enterprise-platform-loop/enterprise-platform-loop.tsx Parametrizes the enterprise loop with domain-specific sidebar, chat, and workflow content.
apps/sim/app/(landing)/workflows/components/workflows-editor-loop.tsx Adds the Workflows hero editor loop with staged workflow assembly and selection state.
apps/sim/app/(landing)/workflows/workflows.tsx Moves Workflows onto the SolutionsPage feature-tile system with a 2-by-2 deploy row.

Reviews (1): Last reviewed commit: "feat(landing): extend enterprise product..." | Re-trigger Greptile

Renders PLATFORM_MENU and SOLUTIONS_MENU alongside Resources (Platform,
Solutions, Resources trigger order), drops the internal-only Mothership
item, centers the five-item Platform panel's two-tile last row, and lets
the mobile sheet scroll now that all three sections outgrow a phone
viewport.

Co-authored-by: Cursor <cursoragent@cursor.com>
* with the per-team pages, and Resources closes with learning surfaces.
*/
export const NAV_MENUS = [RESOURCES_MENU] as const
export const NAV_MENUS = [PLATFORM_MENU, SOLUTIONS_MENU, RESOURCES_MENU] as const

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Duplicate Enterprise nav entry

Medium Severity

Restoring SOLUTIONS_MENU into NAV_MENUS surfaces Enterprise under Solutions, but the desktop bar and mobile sheet still keep a standalone Enterprise link. Visitors now see two separate entries to the same /enterprise route in both desktop and mobile navigation.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 73724ca. Configure here.

Adds the /scheduled-tasks landing page (SolutionsPage consumer with a
chat-free schedule-trigger editor hero and enterprise feature tiles
retold for recurring runs) and a sixth Scheduled Tasks item in the
Platform menu, restoring the clean 3x2 grid.

Co-authored-by: Cursor <cursoragent@cursor.com>
</div>
</div>
)
}

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Duplicated editor hero loops

Medium Severity

ScheduledTasksHeroLoop copies the full clock, scale, reduced-motion, and layout machinery from WorkflowsEditorLoop, differing only in sidebar copy, staged blocks, and the selected block id. That duplication raises the chance of divergent bugfixes between the two heroes.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 2922e01. Configure here.

Completes the Platform nav dropdown — its knowledge, tables, files, and
logs items previously 404'd. Each page is a SolutionsPage consumer with a
product-UI hero loop, enterprise-style feature tiles, CTA band, and SEO
metadata. Removes the dead platform-page component family (workflows was
its last consumer) and adds the new routes to the sitemap.

Co-authored-by: Cursor <cursoragent@cursor.com>
@andresdjasso

Copy link
Copy Markdown
Contributor Author

Pushed 2bd998f: adds the four Platform landing pages (/knowledge, /tables, /files, /logs) that complete the Platform nav dropdown (items previously 404'd), adds them to the sitemap, and removes the dead platform-page component family.

@cursor cursor Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes using default effort and found 2 potential issues.

There are 4 total unresolved issues (including 2 from previous reviews).

Fix All in Cursor

❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.

Reviewed by Cursor Bugbot for commit 2bd998f. Configure here.

* sheet mirrors the desktop nav's information architecture with no extra edit.
* it stays a single row here too. Every menu in {@link NAV_MENUS} expands here as
* a grouped section automatically - the sheet mirrors the desktop nav's
* information architecture with no extra edit.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Duplicate Enterprise nav entries

Medium Severity

Restoring SOLUTIONS_MENU into NAV_MENUS puts Enterprise in that mega-menu, but the desktop bar and mobile sheet still keep a standalone Enterprise link. Visitors now see the same destination twice in primary navigation.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 2bd998f. Configure here.

workspaceName='Brightwave'
chats={SIDEBAR_CHATS}
workflows={SIDEBAR_WORKFLOWS}
/>

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Scheduled Tasks nav not highlighted

Medium Severity

EnterpriseSidebar gained an activeNav prop so platform heroes highlight their own module, and Files, Tables, Knowledge, and Logs all pass it. The Scheduled Tasks hero omits activeNav, so New chat stays active instead of Scheduled tasks.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 2bd998f. Configure here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant