Files
mypage/lib/types/frontmatter.ts
RJ 91afe03109
Some checks failed
Build and Deploy Next.js Blog to Staging / 🔍 Code Quality Checks (push) Failing after 15s
Build and Deploy Next.js Blog to Staging / 🏗️ Build and Push Docker Image (push) Has been skipped
Build and Deploy Next.js Blog to Staging / 🚀 Deploy to Staging (push) Has been skipped
📄 Huge intl feature
2025-12-02 22:29:24 +00:00

25 lines
385 B
TypeScript

export interface FrontMatter {
title: string
description: string
date: string
author: string
category: string
tags: string[]
locale: string
image?: string
draft?: boolean
}
export interface Post {
slug: string
locale: string
frontmatter: FrontMatter
content: string
readingTime: number
excerpt: string
}
export interface BlogParams {
slug: string[]
}