refactor: reorganize app-switcher categories — Sharing, Observing, move rTube to Creating
Rename "Social & Media" to "Sharing", split out rData into new "Observing" category, and move rTube from Social to Creating. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
11467b6758
commit
ef5dca5808
|
|
@ -42,14 +42,15 @@ const MODULE_BADGES: Record<string, { badge: string; color: string }> = {
|
||||||
cart: { badge: "rCt", color: "#fdba74" }, // orange-300
|
cart: { badge: "rCt", color: "#fdba74" }, // orange-300
|
||||||
auctions: { badge: "rA", color: "#fca5a5" }, // red-300
|
auctions: { badge: "rA", color: "#fca5a5" }, // red-300
|
||||||
providers: { badge: "rPr", color: "#fdba74" }, // orange-300
|
providers: { badge: "rPr", color: "#fdba74" }, // orange-300
|
||||||
// Social & Media
|
|
||||||
photos: { badge: "rPh", color: "#f9a8d4" }, // pink-200
|
|
||||||
tube: { badge: "rTu", color: "#f9a8d4" }, // pink-300
|
tube: { badge: "rTu", color: "#f9a8d4" }, // pink-300
|
||||||
|
// Sharing
|
||||||
|
photos: { badge: "rPh", color: "#f9a8d4" }, // pink-200
|
||||||
network: { badge: "rNe", color: "#93c5fd" }, // blue-300
|
network: { badge: "rNe", color: "#93c5fd" }, // blue-300
|
||||||
socials: { badge: "rSo", color: "#7dd3fc" }, // sky-200
|
socials: { badge: "rSo", color: "#7dd3fc" }, // sky-200
|
||||||
files: { badge: "rFi", color: "#67e8f9" }, // cyan-300
|
files: { badge: "rFi", color: "#67e8f9" }, // cyan-300
|
||||||
data: { badge: "rD", color: "#d8b4fe" }, // purple-300
|
|
||||||
books: { badge: "rB", color: "#fda4af" }, // rose-300
|
books: { badge: "rB", color: "#fda4af" }, // rose-300
|
||||||
|
// Observing
|
||||||
|
data: { badge: "rD", color: "#d8b4fe" }, // purple-300
|
||||||
// Work & Productivity
|
// Work & Productivity
|
||||||
work: { badge: "rWo", color: "#cbd5e1" }, // slate-300
|
work: { badge: "rWo", color: "#cbd5e1" }, // slate-300
|
||||||
// Identity & Infrastructure
|
// Identity & Infrastructure
|
||||||
|
|
@ -62,6 +63,7 @@ const MODULE_CATEGORIES: Record<string, string> = {
|
||||||
canvas: "Creating",
|
canvas: "Creating",
|
||||||
notes: "Creating",
|
notes: "Creating",
|
||||||
pubs: "Creating",
|
pubs: "Creating",
|
||||||
|
tube: "Creating",
|
||||||
swag: "Creating",
|
swag: "Creating",
|
||||||
splat: "Creating",
|
splat: "Creating",
|
||||||
cal: "Planning",
|
cal: "Planning",
|
||||||
|
|
@ -78,13 +80,12 @@ const MODULE_CATEGORIES: Record<string, string> = {
|
||||||
cart: "Funding & Commerce",
|
cart: "Funding & Commerce",
|
||||||
auctions: "Funding & Commerce",
|
auctions: "Funding & Commerce",
|
||||||
providers: "Funding & Commerce",
|
providers: "Funding & Commerce",
|
||||||
photos: "Social & Media",
|
photos: "Sharing",
|
||||||
tube: "Social & Media",
|
network: "Sharing",
|
||||||
network: "Social & Media",
|
socials: "Sharing",
|
||||||
socials: "Social & Media",
|
files: "Sharing",
|
||||||
files: "Social & Media",
|
books: "Sharing",
|
||||||
data: "Social & Media",
|
data: "Observing",
|
||||||
books: "Social & Media",
|
|
||||||
work: "Work & Productivity",
|
work: "Work & Productivity",
|
||||||
ids: "Identity & Infrastructure",
|
ids: "Identity & Infrastructure",
|
||||||
stack: "Identity & Infrastructure",
|
stack: "Identity & Infrastructure",
|
||||||
|
|
@ -96,7 +97,8 @@ const CATEGORY_ORDER = [
|
||||||
"Communicating",
|
"Communicating",
|
||||||
"Deciding",
|
"Deciding",
|
||||||
"Funding & Commerce",
|
"Funding & Commerce",
|
||||||
"Social & Media",
|
"Sharing",
|
||||||
|
"Observing",
|
||||||
"Work & Productivity",
|
"Work & Productivity",
|
||||||
"Identity & Infrastructure",
|
"Identity & Infrastructure",
|
||||||
];
|
];
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue