Skip to content

Add blog-next-log starter: Next.js 15 + MDX blog template#1466

Open
geonsang-jo wants to merge 1 commit intovercel:mainfrom
geonsang-jo:add-blog-next-log
Open

Add blog-next-log starter: Next.js 15 + MDX blog template#1466
geonsang-jo wants to merge 1 commit intovercel:mainfrom
geonsang-jo:add-blog-next-log

Conversation

@geonsang-jo
Copy link
Copy Markdown

Summary

Adds a new blog starter template to the starter/ directory.

blog-next-log is a config-driven personal developer blog built with Next.js 15 (App Router), MDX, and Tailwind CSS v4.

Features

  • MDX posts with syntax highlighting and copy button
  • Dark / Light mode with system preference detection
  • Dynamic OG image generation per post
  • Auto-generated sitemap and RSS feed
  • Table of Contents (auto-generated from headings)
  • Resume page generator
  • SEO optimizations (JSON-LD, canonical URLs, robots.txt)
  • Fully responsive (desktop, tablet, mobile)

Links

Tech Stack

  • Next.js 15.5.15 (App Router)
  • React 19
  • Tailwind CSS v4 (CSS-first config)
  • MDX via next-mdx-remote
  • Radix UI primitives
  • TypeScript

Checklist

  • README.md with front matter metadata
  • MIT license
  • Deploy button
  • Demo URL
  • No .env required
  • Builds successfully with npm run build

@vercel
Copy link
Copy Markdown
Contributor

vercel Bot commented Apr 26, 2026

@geonsang-jo is attempting to deploy a commit to the Vercel Examples Team on Vercel.

A member of the Team first needs to authorize it.

@vercel
Copy link
Copy Markdown
Contributor

vercel Bot commented Apr 26, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
mintlify-docs-rewrite Error Error Apr 26, 2026 7:24am

@vercel
Copy link
Copy Markdown
Contributor

vercel Bot commented Apr 26, 2026

Deployment failed with the following error:

The `vercel.ts` schema validation failed with the following message: `rewrites[0]` missing required property `destination`

Learn More: https://vercel.com/docs/concepts/projects/project-configuration

export const parseToc = (source: string) => {
return source
.split("\n")
.filter((line) => line.match(/(^#{2})\s/))
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
.filter((line) => line.match(/(^#{2})\s/))
.filter((line) => line.match(/(^#{2,3})\s/))

The regex /(^#{2})\s/ in the parseToc filter only matches ## headings, silently discarding all ### headings and making the isSubTitle / subSections logic dead code.

Fix on Vercel

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant