From 01d69949d00781688570687aec9d79b3d1d990dc Mon Sep 17 00:00:00 2001 From: JBierenbroodspot Date: Mon, 10 Jul 2023 00:24:39 +0200 Subject: [PATCH] Add Social type --- src/lib/types/cv_types.ts | 6 ++++++ 1 file changed, 6 insertions(+) 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; +};