diff --git a/@types/types.ts b/@types/types.ts index be016f6..b0f643f 100644 --- a/@types/types.ts +++ b/@types/types.ts @@ -1,6 +1,8 @@ -interface FormData { +interface Form { email: string, - name: string + name: string, + content: string, + subject: string } interface InfoData { @@ -60,4 +62,4 @@ interface Project { skills: Array } -export { FormData, InfoData, Skill, Experience, Formation, Post, Tag, Project } +export { Form, InfoData, Skill, Experience, Formation, Post, Tag, Project } diff --git a/src/components/Banner.vue b/src/components/Banner.vue index 8428437..a7d0b8d 100644 --- a/src/components/Banner.vue +++ b/src/components/Banner.vue @@ -1,16 +1,17 @@