This release transforms PING into a sophisticated newspaper-style digital publication with enhanced readability and professional presentation. Major Features: - New FeaturedPostHero component with full-width newspaper design - Completely redesigned homepage with responsive newspaper grid layout - Enhanced PostCard component with refined typography and spacing - Improved mobile-first responsive design (mobile → tablet → desktop → 2XL) - Archive section with multi-column layout for deeper content discovery Technical Improvements: - Enhanced blog post validation and error handling in lib/blog.ts - Better date handling and normalization for scheduled posts - Improved Dockerfile with correct content volume mount paths - Fixed port configuration (3025 throughout stack) - Updated Tailwind config with refined typography and newspaper aesthetics - Added getFeaturedPost() function for hero selection UI/UX Enhancements: - Professional newspaper-style borders and dividers - Improved dark mode styling throughout - Better content hierarchy and visual flow - Enhanced author bylines and metadata presentation - Refined color palette with newspaper sophistication Documentation: - Added DESIGN_BRIEF_NEWSPAPER_LAYOUT.md detailing design principles - Added TESTING_RESULTS_25_POSTS.md with test scenarios This release establishes PING as a premium publication platform for AI orchestration and contextual intelligence thought leadership. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
58 lines
1.3 KiB
Plaintext
58 lines
1.3 KiB
Plaintext
# Scheduled Posts
|
|
|
|
This directory contains blog posts that are scheduled for future publication.
|
|
|
|
## Directory Structure
|
|
|
|
```
|
|
scheduled/
|
|
├── 2024/
|
|
│ ├── 01/
|
|
│ ├── 02/
|
|
│ └── ...
|
|
├── 2025/
|
|
│ ├── 01/
|
|
│ ├── 02/
|
|
│ └── ...
|
|
└── README.md
|
|
```
|
|
|
|
## File Naming Convention
|
|
|
|
Posts should be named with the format: `YYYY-MM-DD-slug.md`
|
|
|
|
Example: `2024-03-15-understanding-ai-agents.md`
|
|
|
|
## Frontmatter Format
|
|
|
|
Each scheduled post should include the following frontmatter:
|
|
|
|
```yaml
|
|
---
|
|
title: "Your Post Title"
|
|
description: "Brief description of the post"
|
|
date: "2024-03-15"
|
|
publishDate: "2024-03-15T09:00:00.000Z"
|
|
author:
|
|
name: "Author Name"
|
|
role: "Author Role"
|
|
tags:
|
|
- "tag1"
|
|
- "tag2"
|
|
featured: false
|
|
draft: false
|
|
---
|
|
```
|
|
|
|
## Publishing Process
|
|
|
|
1. Write your post in the appropriate scheduled directory
|
|
2. Set the `publishDate` to when you want it published
|
|
3. A scheduled job will move posts from `scheduled/` to `posts/` when their publish date arrives
|
|
4. The blog will automatically pick up the new post and display it
|
|
|
|
## Notes
|
|
|
|
- Posts in this directory are not visible on the live blog until moved to `posts/`
|
|
- Use `draft: true` for posts that are work-in-progress
|
|
- The `publishDate` field determines when the post goes live |