NextBlogX

About NextBlogX

NextBlogX is a modern blog platform built with Next.js, showcasing the latest in web development, design, and technology trends. This platform demonstrates the power and flexibility of Next.js for building content-focused websites.

Features

  • Markdown-based content management
  • Responsive design with Tailwind CSS
  • Fast page loads with Next.js App Router
  • SEO-friendly with metadata optimization
  • Typography-focused reading experience

Technology Stack

This blog is built with the following technologies:

  • Next.js 15 with App Router
  • TypeScript for type safety
  • Tailwind CSS for styling
  • Markdown processing with gray-matter and remark

Get Started

To create your own blog posts, simply add Markdown files to the src/content/posts directory. Each post should include frontmatter with metadata like title, date, excerpt, and optional tags.

Example Post Frontmatter

---
title: "Getting Started with Next.js"
date: "2023-04-15T05:35:07.322Z"
excerpt: "Learn how to build modern web applications with Next.js"
coverImage: "/images/posts/nextjs.jpg"
author:
  name: "Jane Doe"
tags:
  - nextjs
  - react
  - tutorial
---