diff --git a/database/Other/Github.json b/database/Other/Github.json new file mode 100644 index 000000000..9751f21cf --- /dev/null +++ b/database/Other/Github.json @@ -0,0 +1,16 @@ +[ + { + "name": "ReadmeSo", + "description": "One of the best and efficient site to generate Readme file for your project.", + "url": "https://readme.so/", + "category": "Other", + "subcategory": "github" + }, + { + "name": "MakeReadme", + "description": "It can generate readme.md and contribute.md files with pre-built templates and suggestions.", + "url": "https://www.makeareadme.com/", + "category": "Other", + "subcategory": "github" + } +] diff --git a/database/data.ts b/database/data.ts index 52df8492a..e38255de6 100644 --- a/database/data.ts +++ b/database/data.ts @@ -50,4 +50,10 @@ export const sidebarData: ISidebar[] = [ { name: "hosting", url: "/hosting" }, ], }, + { + category: "Other", + subcategory: [ + { name: "Github", url: "/github" }, + ], + } ]; diff --git a/database/index.ts b/database/index.ts index 375914e45..21113954f 100644 --- a/database/index.ts +++ b/database/index.ts @@ -25,5 +25,5 @@ export { default as css } from "./youtube/css.json"; export { default as machineLearning } from "./youtube/machine-learning.json"; export { default as webDevelopment } from "./youtube/web-development.json"; export { default as web3metaverse } from "./youtube/web3-metaverse.json"; -export { default as youtubTesting } from "./youtube/testing.json"; - +export { default as github } from "./Other/Github.json"; +export { default as youtubTesting } from "./youtube/testing.json"; \ No newline at end of file diff --git a/types/index.ts b/types/index.ts index c08a6681f..0151a2ce5 100644 --- a/types/index.ts +++ b/types/index.ts @@ -18,7 +18,7 @@ export interface IData { language?:string; } -export type Category = "frontend" | "backend" | "youtube" | "resources"; +export type Category = "frontend" | "backend" | "youtube" | "resources" | "Other"; export type SubCategory = | "images" @@ -47,7 +47,8 @@ export type SubCategory = | "android" | "blogs" | "hosting" - | "web3-metaverse"; + | "web3-metaverse" + | "Github"; export type SubCategories = { name: string; url: string;