+
-
-
diff --git a/content/uses/jetbrains-suite.json b/content/uses/jetbrains-suite.json
index aad0067..ff07c1f 100644
--- a/content/uses/jetbrains-suite.json
+++ b/content/uses/jetbrains-suite.json
@@ -1,5 +1,5 @@
{
"name": "JetBrains Suite (IntelliJ IDEA Ultimate, PyCharm Professional, WebStorm, DataGrip)",
"description": "I use JetBrains Suite for development for 7 years. It's the best IDEs for Java, Python, JavaScript, SQL, and more. I used this suite to develop and to create this website.",
- "category": "IDEs"
+ "category": "ide"
}
\ No newline at end of file
diff --git a/content/uses/themes-fonts.json b/content/uses/themes-fonts.json
index a3fb9f4..b9ef9cc 100644
--- a/content/uses/themes-fonts.json
+++ b/content/uses/themes-fonts.json
@@ -1,5 +1,5 @@
{
"name": "Theme and Font",
"description": "My theme is Catppuccin Macchiato, a community-driven pastel theme that aims to be the middle ground between low and high contrast themes. My main fonts are Vercel Geist and JetBrains Mono",
- "category": "IDEs"
+ "category": "ide"
}
\ No newline at end of file
diff --git a/content/uses/warp.json b/content/uses/warp.json
index d532cd5..fb11698 100644
--- a/content/uses/warp.json
+++ b/content/uses/warp.json
@@ -1,5 +1,5 @@
{
"name": "Warp",
"description": "Warp is a modern, Rust-based terminal reimagined with AI and collaborative tools for better productivity. I'm loving it so far!",
- "category": "hardware"
+ "category": "software"
}
\ No newline at end of file
diff --git a/types.ts b/types.ts
index 6ee0c45..b76f2db 100644
--- a/types.ts
+++ b/types.ts
@@ -45,3 +45,8 @@ export const IDEs = [
{ name: 'IntelliJ IDEA Ultimate', icon: 'i-skill-icons-idea-light' },
{ name: 'WebStorm', icon: 'i-skill-icons-webstorm-light' }
]
+
+export interface UsesItem {
+ name: string
+ description: string
+}