Hello from Notion
This is a test post created in Notion to verify the build-time sync pipeline.
When bun run sync:notion runs, this page is fetched via the Notion API, converted to MDX, and written to content/blog/hello-from-notion.mdx. The existing @next/mdx route renders it at /blog/hello-from-notion with the same SEO, OG image, and JSON-LD treatment as a hand-edited post.
What's verified
- The
dataSources.queryfilter onStatus = Publishedreturns this page. - Properties (
Slug,Date,Description,Author,TLDR) round-trip intoposts.generated.ts. - The MDX import in
app/(mdx)/blog/[slug]/page.tsxresolves at build time.
What to look at next
- View source on the rendered page to confirm Article + QAPage JSON-LD is present (because
TLDRis set). - Add an image in this page to confirm Vercel Blob mirroring and
<Image>JSX generation.