implement tanstack and fetch all data
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user