Files
techzaa-frontend/src/types/projects.type.ts
T

19 lines
487 B
TypeScript
Raw Normal View History

2026-04-04 22:49:48 +06:00
import { ProjectCategory } from "@/enums/projectCategory";
import { ProjectStatus } from "@/enums/projectStatus";
export type T_projects = {
name: string;
description: string;
thumbnail?: string;
images?: string[];
category: ProjectCategory;
githubLink: string;
liveLink?: string;
technologies: string[];
companyName: string;
completionYear?: number;
isFeatured: boolean;
status: ProjectStatus;
createdAt: Date;
updatedAt: Date;
}