-
Notifications
You must be signed in to change notification settings - Fork 189
Expand file tree
/
Copy pathtypes.ts
More file actions
32 lines (30 loc) · 814 Bytes
/
Copy pathtypes.ts
File metadata and controls
32 lines (30 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
* Type definitions for the Projects data structure
* Used for dynamic project rendering in the OurProjects component
*/
export interface ProjectItem {
/** Unique identifier for the project */
id: number;
/** Display title of the project */
title: string;
/** Detailed description of the project */
description: string;
/** Path to the project's preview image */
image: string;
/** Live project URL (website/demo) */
projectUrl: string;
/** GitHub repository URL */
githubUrl: string;
/** Array of technology/category tags */
tags: string[];
}
export interface ProjectsData {
/** Section tag/badge text */
tag: string;
/** Main section title */
title: string;
/** Section description */
description: string;
/** Array of project items */
items: ProjectItem[];
}