From ae201c5ad7e939e57baa279fe51fe9bd80964690 Mon Sep 17 00:00:00 2001 From: mohit1607 <57750800+mohit1607@users.noreply.github.com> Date: Mon, 2 Jan 2023 21:27:41 +0530 Subject: [PATCH 1/2] fix: where to put links confusion The json object for only links is updated to the whole json of a profile, so that no furher confusion about the structure of json happen. --- pages/docs/quickstart.mdx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pages/docs/quickstart.mdx b/pages/docs/quickstart.mdx index 4e5dff6dd72..4b97e074133 100644 --- a/pages/docs/quickstart.mdx +++ b/pages/docs/quickstart.mdx @@ -54,13 +54,20 @@ To do this, you need a GitHub account. If you do not have one yet, you can creat ```js +{ + "name": "Sara Jaoude", + "displayStatsPublic": true, + "type": "personal", + "bio": "Lawyer turned **Digital Nomad**. Travel enthusiast Yoga & Peloton aficionado", + "avatar": "https://github.com/SaraJaoude.png", "links": [ { "name": "Follow me on Twitter", "url": "https://twitter.com/SaraJaoude", "icon": "FaTwitter" - } + }, ] +} ``` From dcf88ee12fd3426a8389f4a38c738ed6ed4e9015 Mon Sep 17 00:00:00 2001 From: mohit1607 <57750800+mohit1607@users.noreply.github.com> Date: Mon, 2 Jan 2023 23:00:50 +0530 Subject: [PATCH 2/2] fix: removed the comma from step 9 code a small fix that is showing invalid Json object --- pages/docs/quickstart.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/docs/quickstart.mdx b/pages/docs/quickstart.mdx index 4b97e074133..f9a0e33bb1a 100644 --- a/pages/docs/quickstart.mdx +++ b/pages/docs/quickstart.mdx @@ -65,7 +65,7 @@ To do this, you need a GitHub account. If you do not have one yet, you can creat "name": "Follow me on Twitter", "url": "https://twitter.com/SaraJaoude", "icon": "FaTwitter" - }, + } ] } ```