feat: fill pages
This commit is contained in:
11
frontend/app/types/api/contact.ts
Normal file
11
frontend/app/types/api/contact.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
export interface ContactRequest {
|
||||
name: string;
|
||||
email: string;
|
||||
message: string;
|
||||
website?: string | null;
|
||||
}
|
||||
|
||||
export interface ContactResponse {
|
||||
success: boolean;
|
||||
message: string;
|
||||
}
|
||||
4
frontend/app/types/api/error.ts
Normal file
4
frontend/app/types/api/error.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export interface ApiError {
|
||||
message: string;
|
||||
success: boolean;
|
||||
}
|
||||
4
frontend/app/types/api/meta.ts
Normal file
4
frontend/app/types/api/meta.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export interface MetaResponse {
|
||||
version: string;
|
||||
name: string;
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
export interface Dictionary<K, T> {
|
||||
[key: K]: T
|
||||
[key: K]: T;
|
||||
}
|
||||
|
||||
13
frontend/app/types/resume.ts
Normal file
13
frontend/app/types/resume.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
export interface ResumeExperience extends TimelineItem {
|
||||
tools: string[];
|
||||
}
|
||||
|
||||
export interface ResumeContent {
|
||||
experience: ResumeExperience[];
|
||||
education: TimelineItem[];
|
||||
otherTools: string[];
|
||||
devops: string[];
|
||||
os: string[];
|
||||
programmingLanguages: string[];
|
||||
frameworks: string[];
|
||||
}
|
||||
0
frontend/app/types/tool.ts
Normal file
0
frontend/app/types/tool.ts
Normal file
Reference in New Issue
Block a user