@@ -84,7 +84,7 @@ Visit http://localhost:3000 to view your application.
8484## 📝 Content Management
8585
8686### Blog Posts
87- Create MDX files in ` blogs /[locale]` with the following format:
87+ Create MDX files in ` blog /[locale]` with the following format:
8888
8989``` markdown
9090---
@@ -132,14 +132,14 @@ nextjs-15-starter/
132132├── app/ # App directory
133133│ ├── [locale]/ # Internationalized routes
134134│ │ ├── about/ # About page
135- │ │ ├── blogs / # Blog pages
135+ │ │ ├── blog / # Blog pages
136136│ │ └── ... # Other pages
137137│ ├── api/ # API routes
138138│ └── globals/ # Global components
139- ├── blogs / # Blog content (MDX)
140- │ ├── en/ # English blogs
141- │ ├── ja/ # Japanese blogs
142- │ └── zh/ # Chinese blogs
139+ ├── blog / # Blog content (MDX)
140+ │ ├── en/ # English blog
141+ │ ├── ja/ # Japanese blog
142+ │ └── zh/ # Chinese blog
143143├── components/ # Reusable components
144144│ ├── ui/ # Base UI components
145145│ ├── header/ # Header components
@@ -213,7 +213,7 @@ pnpm type-check
2132131 . Adding new language support:
214214 - Add new language files in ` i18n/messages/ `
215215 - Update ` i18n/routing.ts ` configuration
216- - Create corresponding language directories in ` blogs /` and ` content/ `
216+ - Create corresponding language directories in ` blog /` and ` content/ `
217217
2182182 . Using translations:
219219``` tsx
0 commit comments