The AI content engine that lives inside your Next.js app
Multi-agent, search-grounded articles that inherit your design system — installed with one NPM package, powered by your own API key or ours.
Not a ChatGPT wrapper
A five-agent pipeline: a Researcher grounded in live Google Search, an Outliner that contracts every section to verified facts, a Writer in your brand voice, a Visual Agent, and a Critic that rejects weak drafts and sends them back for revision.
Your key or ours
Bring your own OpenAI or Gemini key — stored in Google Secret Manager, never in our database — or use hosted credits. No hidden AI markup.
Native, not embedded
Posts render as first-class pages in your app. Your fonts, your Tailwind theme, your domain. Semantic HTML, JSON-LD, OG tags, citations — no iframes, ever.
The 5-minute install
npm i @tezblogs/next
// app/blog/[slug]/page.tsx
import { BlogPost } from '@tezblogs/next'
import { tezblogs } from '@/lib/tezblogs'
export default async function Page({ params }) {
const { slug } = await params
const post = await tezblogs.getPost(slug)
return <BlogPost post={post} />
}