diff --git a/src/lib/types/cv_types.ts b/src/lib/types/cv_types.ts index 6572583..09db9a1 100644 --- a/src/lib/types/cv_types.ts +++ b/src/lib/types/cv_types.ts @@ -14,3 +14,9 @@ export type InfoArticle = { }; export type InfoArticleList = InfoArticle[]; + +export type Social = { + icon: string; + url: URL; + description: string; +};