You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/database/blogs/index.tsx
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,8 @@ interface Blog {
5
5
description: string;
6
6
slug: string;
7
7
authors: string[];
8
+
category: string;
9
+
tags?: string[];
8
10
}
9
11
10
12
constblogs: Blog[]=[
@@ -16,6 +18,8 @@ const blogs: Blog[] = [
16
18
"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.",
17
19
slug: "streamline-ux-ui",
18
20
authors: ["dharshibalasubramaniyam","sanjay-kv"],
21
+
category: "Design",
22
+
tags: ["UX","UI","Design","User Experience"],
19
23
},
20
24
21
25
{
@@ -26,6 +30,8 @@ const blogs: Blog[] = [
26
30
" 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? ",
27
31
slug: "ux-ui-design-job",
28
32
authors: ["dharshibalasubramaniyam","sanjay-kv"],
33
+
category: "Design",
34
+
tags: ["UX","UI","Career","Job"],
29
35
},
30
36
{
31
37
id: 3,
@@ -35,6 +41,8 @@ const blogs: Blog[] = [
35
41
"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.",
36
42
slug: "ux-designers-ai",
37
43
authors: ["dharshibalasubramaniyam","sanjay-kv"],
44
+
category: "AI & Tech",
45
+
tags: ["AI","UX","Design","Technology"],
38
46
},
39
47
{
40
48
id: 4,
@@ -44,6 +52,8 @@ const blogs: Blog[] = [
44
52
"DeepMind is an auxiliary of Google that centers around man-made brainpower. It utilizes a part of AI called AI",
"The GitHub Copilot Coding Agent is an asynchronous software engineering agent that assists developers by suggesting code snippets",
64
76
slug: "git-coding-agent",
65
77
authors: ["sanjay-kv"],
78
+
category: "Development",
79
+
tags: ["GitHub","AI","Coding","Tools"],
66
80
},
67
81
{
68
82
id: 7,
@@ -72,6 +86,8 @@ const blogs: Blog[] = [
72
86
"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.",
"N8N is an open-source workflow automation tool that enables users to connect various apps and services to automate tasks without extensive coding knowledge.",
82
98
slug: "n8n-workflow-automation",
83
99
authors: ["Aditya-Singh-Rathore"],
100
+
category: "Development",
101
+
tags: ["Automation","Workflow","N8N","Tools"],
84
102
},
85
103
{
86
104
id: 9,
@@ -90,6 +108,8 @@ const blogs: Blog[] = [
90
108
"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.",
0 commit comments