[gatsby-theme-minimal-blog]: Support customizing the bottom area of a Post #698
-
Hi, I was trying to add a comment section to my blog. I found out that in order to achieve this, I must shadow the whole <Layout>
{/* ... */}
<section
sx={{
my: 5,
".gatsby-resp-image-wrapper": { my: [4, 4, 5], boxShadow: shadow.join(`, `) },
variant: `layout.content`,
}}
>
<MDXRenderer>{post.body}</MDXRenderer>
</section>
{/* here is where I could put my comment component */}
<DiscussionEmbed { ...{ ...disqusConfig, config: { identifier: post.slug, title: post.title } } } />
</Layout> My idea: This could simply be done by providing an empty component such as |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Not an answer: but for adding comments, did you fork off of |
Beta Was this translation helpful? Give feedback.
-
Hi! Thanks for the suggestion 👍 This totally makes sense and I think an additional component that is empty by default and that one can shadow is the solution what I'd prefer. |
Beta Was this translation helpful? Give feedback.
-
#705 was published :) |
Beta Was this translation helpful? Give feedback.
#705 was published :)