Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions src/components/ReaderView/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ import CopyMarkdownActionsDropdown from 'components/MarkdownActionsDropdown'
import { DebugContainerQuery } from 'components/DebugContainerQuery'
import CustomerMetadata from './CustomerMetadata'
import { getVideoClasses } from '../../constants'
import { Blockquote } from 'components/Blockquote'

dayjs.extend(relativeTime)

Expand Down Expand Up @@ -777,6 +778,21 @@ function ReaderViewContent({
children
)}
</div>
<div
className={`mt-8 mx-auto transition-all ${
fullWidthContent || body?.type !== 'mdx'
? 'max-w-full'
: contentMaxWidthClass || 'max-w-2xl'
}`}
>
<Blockquote>
PostHog is an all-in-one developer platform for building successful products. We
provide product analytics, web analytics, session replay, error tracking,
feature flags, experimentation, surveys, LLM analytics, data warehouse, a CDP,
and an AI product assistant to help debug your code, ship features faster, and
keep all your usage and customer data in one stack.
</Blockquote>
</div>
{showQuestions && (
<div
className={`mt-8 mx-auto transition-all ${
Expand Down