Zuvany Test Email
This is the test email

If your Zuvany website is a static site built with Next.js, the easiest and most scalable way to add a blog is:
Best Option: MDX/Markdown Blog Inside Your Existing Next.js Site
This is the cleanest setup for:
- Daily blog writing
- SEO
- Fast loading
- No separate CMS needed initially
- Easy deployment on Vercel
Recommended Architecture
/zuvany-site
/app
/blog
first-post.mdx
second-post.mdx
/components
/content
You write blogs as simple .mdx files.
Example:
---
title: "How AI Changes Ecommerce"
date: "2026-05-13"
slug: "ai-ecommerce"
---
# Introduction
Your content here...
Easiest Setup (Recommended)
Use:
- Next.js App Router
- MDX
- Contentlayer OR Velite
- Static generation
Fastest Implementation
Install MDX:
npm install @next/mdx @mdx-js/loader @mdx-js/react
Then configure:
// next.config.mjs
import createMDX from '@next/mdx'
const withMDX = createMDX()
export default withMDX({
pageExtensions: ['js', 'jsx', 'mdx'],
})
Blog Folder Structure
/content/blog/
hello-world.mdx
nextjs-seo-guide.mdx
Dynamic Blog Route
Create:
/app/blog/[slug]/page.js
Example:
export default function BlogPost({ params }) {
return <div>{params.slug}</div>
}
Better & Easier: Use Contentlayer
This makes blog management much easier.
Install:
npm install contentlayer next-contentlayer
Official docs:
Benefits:
- Auto-generated blog metadata
- SEO ready
- Type-safe
- Very fast
- Great for static blogs
If Non-Technical Team Will Write Blogs
Then use a CMS.
Best Easy CMS Options
CMS
Easy
Free
Good For
Yes
Yes
Professional
Medium
Limited
Enterprise
Medium
Self-hosted
Full control
Very Easy
Yes
Startup blogging
Easy
Yes
Git-based static sites
My Recommendation For You
Since you said:
“daily blog writing”
“easy setup”
“inside our website”
I’d recommend this progression:
Phase 1 (Start Today)
Use:
- Next.js
- MDX
- Contentlayer
Advantages:
- Very fast
- No extra backend
- SEO excellent
- Cheap hosting
- Easy scaling
Phase 2 (Later)
When non-developers need to publish blogs:
Move to:
- Sanity CMS
OR - Notion-based blogging
SEO Setup (Important)
For every blog:
Add:
export const metadata = {
title: post.title,
description: post.description,
}
Also:
- sitemap.xml
- RSS feed
- OpenGraph images
- schema markup
This helps Google ranking.
Very Easy Alternative (No Coding Blogging)
If you want ultra-fast setup:
Use:
Then pull blogs into Next.js.
Best Stack Overall For Zuvany
I’d personally do:
Next.js
+ MDX
+ Contentlayer
+ Vercel
This is modern, fast, SEO-friendly, and low maintenance.
If You Want
I can also help you with:
- Full blog implementation code
- SEO-ready blog template
- Admin dashboard for writing blogs
- AI auto-blog generation workflow
- Daily publishing automation
- Rich text editor inside website
- Category/tag system
- Search feature
- Related posts
- Multi-author blogging system
I can give you a production-ready structure for your Next.js project.
