feat: refactor BlogCard, ProjectCard, and ProjectModal components to use new type definitions and improve structure
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
export interface BlogPostProps {
|
||||
id: string;
|
||||
slug: string;
|
||||
title: string;
|
||||
excerpt: string;
|
||||
image: string;
|
||||
category: string;
|
||||
date: string;
|
||||
author: string;
|
||||
commentCount: number;
|
||||
readTime: string;
|
||||
featured?: boolean;
|
||||
tags: string[];
|
||||
content: string;
|
||||
}
|
||||
Reference in New Issue
Block a user