export declare const sidePanelMdxTemplate = "---\ntitle: \"Side Panel\"\ndescription: \"Replace a page's table of contents with your own content, pinned to the right rail on desktop and inline on mobile.\"\ndate: \"2026-07-27\"\ncategory: \"Components\"\ncategoryOrder: 1\norder: 18\n---\n# Side Panel\n\nPin supplementary content - notes, links, examples, anything - to the right side of a page.\n\n\n \n This page uses a `SidePanel`, so it has no table of contents.\n \n \n Any component works inside a panel.\n \n\n\nThe `SidePanel` component takes over the right rail that normally holds the \"On this page\" table of contents. Use it when a page benefits more from persistent context - a related link, a note, a quick reference - than from a list of headings.\n\n## Side Panel Usage\n\nPlace a `SidePanel` anywhere in your MDX file. On desktop its position in the file does not matter; it always renders in the right rail.\n\n```html\n\n Pin a note to the side panel.\n\n```\n\n## Behavior\n\n- **Desktop**: the panel is pinned to the right rail and scrolls independently of the page. It is as wide as the navigation sidebar, and on wide screens it grows to the width of the AI chat panel, with the page content, navigation buttons, and footer shifting left to make room.\n- **Mobile**: the panel renders inline, exactly where you placed it in the file. Put it near the top of the page if you want readers to see it first.\n- **Table of contents**: any page containing a `SidePanel` hides its \"On this page\" list. The panel and the table of contents share the same column.\n- **Code samples**: a `SidePanel` shown inside a code block is just text, so documenting the component does not hide your table of contents.\n\n\n Use one `SidePanel` per page. Multiple panels stack on top of each other in the right rail.\n\n\n## What to put in a panel\n\nAny component works inside a `SidePanel`. Keep it scannable - the rail is meant for supporting material, not a second article.\n\n```html\n\n \n Browse every endpoint.\n \n Panels scroll independently of the page.\n\n```\n\n## Properties\n\n\n The content of the side panel.\n";