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' diff --git a/database/other/text-formatting.json b/database/other/text-formatting.json new file mode 100644 index 000000000..98ca008fe --- /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 synonyms and antonyms for the word given by the user.", + "url": "https://text-tune.netlify.app/", + "category": "other", + "subcategory": "text-formatting" +}]