Second Blog Post

20 January 2024

Our second post demonstrating Nuxt Content capabilities

Second Blog Post

This is our second post, showcasing how easy it is to create content with Nuxt Content.

Benefits of Nuxt Content

  1. File-based: Content is stored as files in your repository
  2. Git-friendly: Version control your content alongside your code
  3. Markdown support: Write in markdown with frontmatter
  4. Fast: No external API calls needed
  5. SEO-friendly: Built-in meta tag generation

Code Example

// Example of using Nuxt Content
const { data: posts } = await queryContent('posts')
  .where({ status: 'published' })
  .sort({ date: -1 })
  .find()

Much simpler than managing a separate CMS!