chore: another markdown

This commit is contained in:
Joel
2026-03-05 17:39:14 +08:00
parent 8e3a8ef908
commit 42d08995bc

View File

@ -1,7 +1,25 @@
'use client'
import { MarkdownWithDirective } from '@/app/components/base/markdown-with-directive'
const markdown = `
const markdown1 = `
Were refining our messaging for technical teams, like how did you find us and did our positioning truly resonate?
Share your perspective in a 30-minute chat and receive:
::::withIconCardList
:::withIconCardItem {icon="https://assets.dify.ai/images/gift-card.png"}
$100 Amazon gift card
:::
:::withIconCardItem {icon="https://assets.dify.ai/images/dify-swag.png"}
Dify swag
:::
::::
`
const markdown2 = `
Were speaking with technical teams to better understand:
- How you discovered Dify
@ -28,7 +46,11 @@ export default function RemarkDirectiveTestPage() {
remark-directive test page
</h1>
<div className="markdown-body">
<MarkdownWithDirective markdown={markdown} />
<MarkdownWithDirective markdown={markdown1} />
</div>
<div className="markdown-body !mt-5">
<MarkdownWithDirective markdown={markdown2} />
</div>
</main>
)