Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added a card in Text Formatting - Text Tune #2199

Merged
merged 4 commits into from
Dec 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions components/TopBar/CategoryDescriptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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':
Expand Down
19 changes: 14 additions & 5 deletions database/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
],
},
{
Expand Down Expand Up @@ -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,
},
],
},
]
Expand Down
11 changes: 5 additions & 6 deletions database/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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'
7 changes: 7 additions & 0 deletions database/other/text-formatting.json
Original file line number Diff line number Diff line change
@@ -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"
}]
Loading