Add dedicated Support Page#439
Merged
Merged
Conversation
There was a problem hiding this comment.
Orca Security Scan Summary
| Status | Check | Issues by priority | |
|---|---|---|---|
| Infrastructure as Code | View in Orca | ||
| SAST | View in Orca | ||
| Secrets | View in Orca | ||
| Vulnerabilities | View in Orca |
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new dedicated /support documentation page and wires it into the docs UI so users have a single, discoverable place to route themselves to the right help channel.
Changes:
- Introduces
docs/support/index.mdxwith support channel cards and a routing table. - Registers a new
supportSidebarand adds asupportentry to the secondary navbar configuration. - Surfaces Support entry points in the primary navbar (icon) and doc footer (internal link).
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
docs/support/index.mdx |
New Support landing page content (channels + guidance). |
sidebars.js |
Adds a dedicated supportSidebar pointing at the new page. |
secondaryNavbar.js |
Adds a Support section to the secondary navbar options. |
docusaurus.config.js |
Adds a Support icon link in the primary navbar. |
src/css/custom.scss |
Styles for the new navbar icon and icon-link padding. |
src/theme/DocItem/Footer/Footer.js |
Updates footer to point users to /support under “Get help”. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
212
to
217
| { | ||
| html: `<i class="fa fa-headset supportNavIcon" title="Support" aria-hidden="true"></i>`, | ||
| to: "/support", | ||
| position: "right", | ||
| className: "navbarIconLink", | ||
| }, |
- Route open-source surfaces (docs feedback include, database landing page, navigation modal) to the /support hub instead of the portal - Standardize the portal URL on support.weaviate.io - Constrain the navigation modal height so it scrolls on short screens - Move the modal support card into "Need help?" and drop the duplicate from additional resources - Replace the navbar headset icon with a labeled Support button - Trim duplicated portal instructions on the support page and hide its one-item sidebar - Link the forum support category instead of prefilled new-topic URLs - Keep Forum as a second link under "Get help" in the footer Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
- Remove Events & Workshops from the navigation modal - Move Contributor guide from additional resources to "Need help?" - Replace the "Edit this page" footer link with a Documentation Feedback link that opens the same prefilled GitHub issue as the feedback widget - Drop the Documentation Feedback card from the page-bottom support includes now that every page links it in the footer Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
- Drop the Academy icon button from the main navbar (still reachable via the navigation modal) along with its now-unused styles - Tighten modal header padding, title size, body padding, and section gaps so the modal fits without scrolling on most screens Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
- The free cluster limit is per user, not per organization - Cloud FAQ "contact support" links now go to the Support page Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
g-despot
approved these changes
Jun 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds a dedicated Support page at
/supportand makes it the hub for getting help, with every support entry point in the docs routed to the right channel.Why
There was no single place that explains how to get help with Weaviate. Support info was scattered:
support@weaviate.iowas buried inline in a few Cloud pages, the forum was the only channel in the footer, and support plans live on the website. Users often land in "Contact Us" on the main site even when they need actual support. A dedicated page tells each user which channel fits their situation, and routing open-source surfaces through it avoids nudging open-source users into support tickets.Changes
New Support page (
docs/support/index.mdx)displayed_sidebar: null)Routing: hub for open source, portal for Cloud
/support: the page-bottom "Questions and feedback" include, the Database landing page, the navigation modal, and the Cloud FAQsupport.weaviate.ioeverywhere (was mixed withconsole.weaviate.cloud/supportandmailto:)forum.weaviate.io/c/support) instead of prefilled new-topic URLsNavbar
Navigation modal
max-height: 85vhwith a scrolling body so it fits small screensDoc page footer
/support) and Forum linksMisc
static/prompts/*Testing
yarn build/yarn build-devyarn validate-links-dev/support🤖 Generated with Claude Code