Initial commit: CHORUS PING! blog
- Next.js 14 blog application with theme support - Docker containerization with volume bindings - Traefik integration with Let's Encrypt SSL - MDX support for blog posts - Theme toggle with localStorage persistence - Scheduled posts directory structure - Brand guidelines compliance with CHORUS colors 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
30
types/blog.ts
Normal file
30
types/blog.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
export interface BlogPost {
|
||||
slug: string
|
||||
title: string
|
||||
description: string
|
||||
content: string
|
||||
date: string
|
||||
author: {
|
||||
name: string
|
||||
avatar?: string
|
||||
role?: string
|
||||
}
|
||||
tags: string[]
|
||||
featured?: boolean
|
||||
coverImage?: string
|
||||
readingTime: number
|
||||
}
|
||||
|
||||
export interface BlogMeta {
|
||||
title: string
|
||||
description: string
|
||||
date: string
|
||||
author: {
|
||||
name: string
|
||||
avatar?: string
|
||||
role?: string
|
||||
}
|
||||
tags: string[]
|
||||
featured?: boolean
|
||||
coverImage?: string
|
||||
}
|
||||
Reference in New Issue
Block a user