Skip to content

Comments

Update homepage messaging and navigation#2748

Merged
jalafgani merged 6 commits intomainfrom
add-customer-stories-nav
Feb 13, 2026
Merged

Update homepage messaging and navigation#2748
jalafgani merged 6 commits intomainfrom
add-customer-stories-nav

Conversation

@jalafgani
Copy link
Contributor

@jalafgani jalafgani commented Feb 13, 2026

Summary

  • Add 'Customers' link to main navigation pointing to customer stories
  • Update hero headline to 'Built for the first solocorn'
  • Update hero subtitle to emphasize open-source backend and all features with cost-effective scaling
  • Change product section heading to 'Build like a team of hundreds'
  • Update logo section to display 6 wide x 2 deep (all 12 logos visible)
  • Add 'Read our case studies' link below logo section

Test plan

  • Verify 'Customers' link appears in navigation and links to customer stories
  • Verify new hero headline and subtitle display correctly
  • Verify product section heading updated
  • Verify all 12 logos display in 6x2 grid layout
  • Verify 'Read our case studies' link appears below logos

Made with Cursor

Summary by CodeRabbit

  • New Features

    • Added a "Customers" navigation link to the main header.
    • Added a "Read our case studies →" link below the logo grid.
  • Style

    • Updated hero messaging and page title across marketing pages.
    • Simplified logo display into a responsive grid, removed animations, and widened the container for improved presentation.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Feb 13, 2026

Walkthrough

This PR updates marketing content and layout across four files: adds a "Customers" navigation link to the main header at /blog/category/customer-stories; changes the marketing bento hero heading to "Build like a team of hundreds"; replaces an animated, grouped logo layout with a static responsive grid, adjusts container width and logo sizing, and adds a centered "Read our case studies →" link; and updates the marketing page title and hero copy to "Built for the first solocorn" with an expanded subtitle.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~20 minutes

🚥 Pre-merge checks | ✅ 3 | ❌ 1
❌ Failed checks (1 warning)
Check name Status Explanation Resolution
Merge Conflict Detection ⚠️ Warning ❌ Merge conflicts detected (10 files):

⚔️ .optimize-cache.json (content)
⚔️ server/sitemap.js (content)
⚔️ src/hooks.server.ts (content)
⚔️ src/lib/layouts/Main.svelte (content)
⚔️ src/lib/utils/canonical.ts (content)
⚔️ src/routes/(marketing)/(components)/bento/bento.svelte (content)
⚔️ src/routes/(marketing)/(components)/logo-list.svelte (content)
⚔️ src/routes/(marketing)/+page.svelte (content)
⚔️ src/routes/docs/apis/realtime/+page.markdoc (content)
⚔️ src/routes/robots.txt/+server.ts (content)

These conflicts must be resolved before merging into main.
Resolve conflicts locally and push changes to this branch.
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title 'Update homepage messaging and navigation' accurately summarizes the main changes: it captures both the messaging updates (hero headline, subtitle, product heading) and navigation additions (Customers link).
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch add-customer-stories-nav
⚔️ Resolve merge conflicts (beta)
  • Auto-commit resolved conflicts to branch add-customer-stories-nav
  • Create stacked PR with resolved conflicts
  • Post resolved changes as copyable diffs in a comment

No actionable comments were generated in the recent review. 🎉


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 3

🤖 Fix all issues with AI agents
In `@src/lib/layouts/Main.svelte`:
- Around line 116-119: The navLinks entry for label 'Customers' uses an absolute
URL which breaks environment consistency; update the navLinks array entry (the
object with label 'Customers' and href) to use a relative path instead (e.g.
change href from 'https://appwrite.io/blog/category/customer-stories' to
'/blog/category/customer-stories') so it behaves like the other nav items.

In `@src/routes/`(marketing)/(components)/logo-list.svelte:
- Around line 99-103: The {`#each`} block iterating over logos lacks a key which
triggers the svelte/require-each-key lint error; update the each block (the
logos iteration in logo-list.svelte) to include a stable key (e.g., use alt or
src) like: {`#each` logos as { src, alt, width, height } (alt)} so Svelte can
correctly reconcile DOM updates.
- Around line 106-111: The anchor in logo-list.svelte that renders "Read our
case studies →" uses an absolute href
"https://appwrite.io/blog/category/customer-stories"; change it to the relative
path "/blog/category/customer-stories" so non-production builds and local
environments route correctly; update the href attribute on that <a> element
accordingly and keep existing classes and text intact.
🧹 Nitpick comments (1)
src/routes/(marketing)/(components)/logo-list.svelte (1)

2-2: Remove unused browser import.

The browser variable is not referenced in this file. Remove the import statement to clean up unused dependencies.

- Add 'Customers' link to main navigation pointing to customer stories
- Update hero headline to 'Built for the first solocorn'
- Update hero subtitle to emphasize open-source backend and all features
- Change product section heading to 'Build like a team of hundreds'
- Update logo section to display 6 wide x 2 deep (all 12 logos visible)
- Add 'Read our case studies' link below logo section

Co-authored-by: Cursor <cursoragent@cursor.com>
@jalafgani jalafgani force-pushed the add-customer-stories-nav branch from 3ff6d62 to 2f6c4ad Compare February 13, 2026 00:37
jalafgani and others added 3 commits February 12, 2026 16:39
- Add key to each block for proper DOM reconciliation
- Use relative URL for customer stories link

Co-authored-by: Cursor <cursoragent@cursor.com>
- Change 'cost effectively' to 'affordably' for clearer value proposition
- Scale down logos on mobile with max-width constraint
- Add horizontal padding to logo container for better mobile spacing
- Reduce gap between logos on mobile from 8 to 6

Co-authored-by: Cursor <cursoragent@cursor.com>
- Change to 'Loved by startups and world leaders'
- Cleaner, more concise messaging

Co-authored-by: Cursor <cursoragent@cursor.com>
@jalafgani jalafgani force-pushed the add-customer-stories-nav branch from 27d4fa5 to 2a4f97b Compare February 13, 2026 18:19
Co-authored-by: Cursor <cursoragent@cursor.com>
@jalafgani jalafgani merged commit 94c2969 into main Feb 13, 2026
6 checks passed
@jalafgani jalafgani deleted the add-customer-stories-nav branch February 13, 2026 20:09
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.

2 participants