From 11e68cf194b7f2a1bdf4951502cde342fb0afff8 Mon Sep 17 00:00:00 2001 From: Nelson Uprety Date: Fri, 1 Dec 2023 15:39:39 -0700 Subject: [PATCH 1/4] Added a card in Text Formatting - Text Tune --- database/other/text-formatting.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 database/other/text-formatting.json diff --git a/database/other/text-formatting.json b/database/other/text-formatting.json new file mode 100644 index 000000000..8d286eb77 --- /dev/null +++ b/database/other/text-formatting.json @@ -0,0 +1,7 @@ +[{ + "name": "Text Tune", + "description": "Text tune is the ultimate solution for all the text formatting needs!The website provides text formatting features like UPPERCASE, lowercase, Title Case, Reverse Text, Remove WhiteSpace and another feature of this website is to provide with synonyms and antonyms for the word given by the user. If you are looking to format your text or get synonyms and antonyms for given words quickly, this website can be helpful.", + "url": "https://text-tune.netlify.app/", + "category": "other", + "subcategory": "text-formatting" +}] \ No newline at end of file From 2dfa0433b372a402000e6081220e2eb09252f870 Mon Sep 17 00:00:00 2001 From: Nelson Uprety Date: Fri, 1 Dec 2023 23:04:20 -0700 Subject: [PATCH 2/4] Added a card in Text Formatting - Text Tune --- components/TopBar/CategoryDescriptions.ts | 1 + database/data.ts | 19 ++++++++++++++----- database/index.ts | 11 +++++------ 3 files changed, 20 insertions(+), 11 deletions(-) diff --git a/components/TopBar/CategoryDescriptions.ts b/components/TopBar/CategoryDescriptions.ts index 31fb4dfe6..69ed0814d 100644 --- a/components/TopBar/CategoryDescriptions.ts +++ b/components/TopBar/CategoryDescriptions.ts @@ -184,6 +184,7 @@ const categoryDescriptions: CategoryDescriptions = { podcasts: 'Coding podcasts to listen to when you feel demotivated.', contributors: 'These are the people that have helped LinksHub come to life! Thank you for your support! Note: M = Maintainer and C = Contributors', + textFormatting: 'Your ultimate solution for all your text formatting needs!', // Placement-Prep 'interview preparation': diff --git a/database/data.ts b/database/data.ts index f17cf2b62..600f82343 100644 --- a/database/data.ts +++ b/database/data.ts @@ -303,11 +303,15 @@ export const sidebarData: ISidebar[] = [ ], }, { - category:'data-structures', - subcategory:[ - {name:'DSA Articles',url:'/dsa-articles',resources:DB.dsaArticles}, - {name:'DSA Tutorials',url:'/dsa-tutorials',resources:DB.dsaTutorials}, - {name:'DSA Courses',url:'/dsa-courses',resources:DB.dsaCourses}, + category: 'data-structures', + subcategory: [ + { name: 'DSA Articles', url: '/dsa-articles', resources: DB.dsaArticles }, + { + name: 'DSA Tutorials', + url: '/dsa-tutorials', + resources: DB.dsaTutorials, + }, + { name: 'DSA Courses', url: '/dsa-courses', resources: DB.dsaCourses }, ], }, { @@ -403,6 +407,11 @@ export const sidebarData: ISidebar[] = [ { name: 'Communities', url: '/communities', resources: DB.communities }, { name: 'Roadmaps', url: '/roadmaps', resources: DB.roadmaps }, { name: 'Domains', url: '/domains', resources: DB.domains }, + { + name: 'Text Formatting', + url: '/text-formatting', + resources: DB.textFormatting, + }, ], }, ] diff --git a/database/index.ts b/database/index.ts index 379f771ca..8d879d0a0 100644 --- a/database/index.ts +++ b/database/index.ts @@ -105,6 +105,7 @@ export { default as otherResources } from './other/other-resources.json' export { default as communities } from './other/communities.json' export { default as roadmaps } from './other/roadmaps.json' export { default as domains } from './other/domains.json' +export { default as textFormatting } from './other/text-formatting.json' // competitive programming export { default as cpPlatforms } from './competitive_programming/cp-platforms.json' export { default as cpTutorials } from './competitive_programming/cp-tutorials.json' @@ -122,9 +123,7 @@ export { default as dsaArticles } from './data_structures/dsa-articles.json' export { default as dsaTutorials } from './data_structures/dsa-tutorials.json' export { default as dsaCourses } from './data_structures/dsa-courses.json' // Block Chain -export {default as smartContracts} from './BlockChain/smart-contracts.json' -export {default as truffle} from './BlockChain/truffle.json' -export {default as hardhat} from './BlockChain/hardhat.json' -export {default as ethers} from './BlockChain/ethers.json' - - +export { default as smartContracts } from './BlockChain/smart-contracts.json' +export { default as truffle } from './BlockChain/truffle.json' +export { default as hardhat } from './BlockChain/hardhat.json' +export { default as ethers } from './BlockChain/ethers.json' From 57ae67c4fc1a75fe78079e41e7569a12a86e2fb1 Mon Sep 17 00:00:00 2001 From: Nelson Uprety Date: Sun, 3 Dec 2023 10:51:39 -0700 Subject: [PATCH 3/4] Update text-formatting.json Adjusted the text as per request. --- database/other/text-formatting.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/database/other/text-formatting.json b/database/other/text-formatting.json index 8d286eb77..58874e5b2 100644 --- a/database/other/text-formatting.json +++ b/database/other/text-formatting.json @@ -1,7 +1,7 @@ [{ "name": "Text Tune", - "description": "Text tune is the ultimate solution for all the text formatting needs!The website provides text formatting features like UPPERCASE, lowercase, Title Case, Reverse Text, Remove WhiteSpace and another feature of this website is to provide with synonyms and antonyms for the word given by the user. If you are looking to format your text or get synonyms and antonyms for given words quickly, this website can be helpful.", + "description": "Text tune is the ultimate solution for all the text formatting needs!The website provides text formatting features like UPPERCASE, lowercase, Title Case, Reverse Text, Remove WhiteSpace and another feature of this website is to provide synonyms and antonyms for the word given by the user.", "url": "https://text-tune.netlify.app/", "category": "other", "subcategory": "text-formatting" -}] \ No newline at end of file +}] From 958bc742f46b09f1644fdb3894ad24f2abd64dc0 Mon Sep 17 00:00:00 2001 From: Nelson Uprety Date: Sun, 3 Dec 2023 10:52:22 -0700 Subject: [PATCH 4/4] Update text-formatting.json Adjusted the text as per request. --- database/other/text-formatting.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/other/text-formatting.json b/database/other/text-formatting.json index 58874e5b2..98ca008fe 100644 --- a/database/other/text-formatting.json +++ b/database/other/text-formatting.json @@ -1,6 +1,6 @@ [{ "name": "Text Tune", - "description": "Text tune is the ultimate solution for all the text formatting needs!The website provides text formatting features like UPPERCASE, lowercase, Title Case, Reverse Text, Remove WhiteSpace and another feature of this website is to provide synonyms and antonyms for the word given by the user.", + "description": "Text tune is the ultimate solution for all the text formatting needs! The website provides text formatting features like UPPERCASE, lowercase, Title Case, Reverse Text, Remove WhiteSpace and another feature of this website is to provide synonyms and antonyms for the word given by the user.", "url": "https://text-tune.netlify.app/", "category": "other", "subcategory": "text-formatting"