Skip to content

Commit 09b5dd2

Browse files
CopilotAdez017
andcommitted
Add sidebar with search and category filters to blog page
Co-authored-by: Adez017 <[email protected]>
1 parent 9a6fde1 commit 09b5dd2

File tree

3 files changed

+496
-76
lines changed

3 files changed

+496
-76
lines changed

src/database/blogs/index.tsx

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ interface Blog {
55
description: string;
66
slug: string;
77
authors: string[];
8+
category: string;
9+
tags?: string[];
810
}
911

1012
const blogs: Blog[] = [
@@ -16,6 +18,8 @@ const blogs: Blog[] = [
1618
"User experience design can be overwhelming because of the number of factors that influence what a product should look like and how it should function.",
1719
slug: "streamline-ux-ui",
1820
authors: ["dharshibalasubramaniyam", "sanjay-kv"],
21+
category: "Design",
22+
tags: ["UX", "UI", "Design", "User Experience"],
1923
},
2024

2125
{
@@ -26,6 +30,8 @@ const blogs: Blog[] = [
2630
" Are you passionate about design and dreaming of a career in it? Or maybe you are already in the design space and looking to pivot into UI/UX? ",
2731
slug: "ux-ui-design-job",
2832
authors: ["dharshibalasubramaniyam", "sanjay-kv"],
33+
category: "Design",
34+
tags: ["UX", "UI", "Career", "Job"],
2935
},
3036
{
3137
id: 3,
@@ -35,6 +41,8 @@ const blogs: Blog[] = [
3541
"The impact of technology on UX design is undeniable. Automation and artificial intelligence are making it easier to identify user needs and create tailored experiences.",
3642
slug: "ux-designers-ai",
3743
authors: ["dharshibalasubramaniyam", "sanjay-kv"],
44+
category: "AI & Tech",
45+
tags: ["AI", "UX", "Design", "Technology"],
3846
},
3947
{
4048
id: 4,
@@ -44,6 +52,8 @@ const blogs: Blog[] = [
4452
"DeepMind is an auxiliary of Google that centers around man-made brainpower. It utilizes a part of AI called AI",
4553
slug: "google-deepmind",
4654
authors: ["dharshibalasubramaniyam", "sanjay-kv"],
55+
category: "AI & Tech",
56+
tags: ["AI", "Google", "DeepMind", "Machine Learning"],
4757
},
4858
{
4959
id: 5,
@@ -53,6 +63,8 @@ const blogs: Blog[] = [
5363
"An SEO backlink is created when one website links to another, and they're extremely important for SEO. ",
5464
slug: "google-backlinks",
5565
authors: ["sanjay-kv"],
66+
category: "Resources",
67+
tags: ["SEO", "Marketing", "Backlinks", "Web Development"],
5668
},
5769

5870
{
@@ -63,6 +75,8 @@ const blogs: Blog[] = [
6375
"The GitHub Copilot Coding Agent is an asynchronous software engineering agent that assists developers by suggesting code snippets",
6476
slug: "git-coding-agent",
6577
authors: ["sanjay-kv"],
78+
category: "Development",
79+
tags: ["GitHub", "AI", "Coding", "Tools"],
6680
},
6781
{
6882
id: 7,
@@ -72,6 +86,8 @@ const blogs: Blog[] = [
7286
"Apache Spark is a fast, open-source big data framework that leverages in-memory computing for high performance. Its architecture powers scalable distributed processing across clusters, making it essential for analytics and machine learning.",
7387
slug: "spark-architecture",
7488
authors: ["Aditya-Singh-Rathore", "sanjay-kv"],
89+
category: "Development",
90+
tags: ["Apache Spark", "Big Data", "Data Engineering", "Architecture"],
7591
},
7692
{
7793
id: 8,
@@ -81,6 +97,8 @@ const blogs: Blog[] = [
8197
"N8N is an open-source workflow automation tool that enables users to connect various apps and services to automate tasks without extensive coding knowledge.",
8298
slug: "n8n-workflow-automation",
8399
authors: ["Aditya-Singh-Rathore"],
100+
category: "Development",
101+
tags: ["Automation", "Workflow", "N8N", "Tools"],
84102
},
85103
{
86104
id: 9,
@@ -90,6 +108,8 @@ const blogs: Blog[] = [
90108
"OpenAI AgentKit is a framework that simplifies the process of building AI agents, allowing developers to create intelligent applications without getting bogged down in the underlying complexities.",
91109
slug: "open-ai-agent-builder",
92110
authors: ["Aditya-Singh-Rathore"],
111+
category: "AI & Tech",
112+
tags: ["AI", "OpenAI", "Development", "Agents"],
93113
},
94114
];
95115

0 commit comments

Comments
 (0)