We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f250f3c commit 07619e5Copy full SHA for 07619e5
src/components/Hero/MdxHero/index.tsx
@@ -11,7 +11,15 @@ const MdxHero = (props: MdxHeroProps) => {
11
const { breadcrumbs, title } = props
12
return (
13
<Stack py="8" px="6" spacing="6" w="full">
14
- <Breadcrumbs {...breadcrumbs} />
+ {/* TODO:
15
+ * Recommend the Breadcrumbs component
16
+ * not have a spacing style (`mb`) and
17
+ * let the parent handle the spacing.
18
+ *
19
+ * This change would be done when the component is applied
20
+ * to prod.
21
+ */}
22
+ <Breadcrumbs {...breadcrumbs} mb={0} />
23
<Heading as="h1" size="2xl">
24
{title}
25
</Heading>
0 commit comments