diff --git a/packages/docs/pages/panel.tsx b/packages/docs/pages/panel.tsx index c3f77ef25..9d56ce937 100644 --- a/packages/docs/pages/panel.tsx +++ b/packages/docs/pages/panel.tsx @@ -1,7 +1,7 @@ import { H1, Panel, Text } from '@bigcommerce/big-design'; import React from 'react'; -import { Code, CodePreview, List } from '../components'; +import { Code, CodePreview, GuidelinesTable, List } from '../components'; import { MarginPropTable, PanelPropTable } from '../PropTables'; const PanelPage = () => { @@ -50,6 +50,25 @@ const PanelPage = () => { } renderPanel={false} /> + + + + Panel should use headings that set clear expectations about the content inside. + , + <> + Panel should prioritize information so the most important content comes first. + , + ]} + discouraged={[ + <> + Panel should avoid too many call-to-action buttons or links and have only one primary + call to action. + , + ]} + /> + ); };