fix: remove stale featured ref in projects, fix command-palette D.projects -> D.services

This commit is contained in:
khondokartowsif171
2026-04-27 18:17:12 +06:00
parent 60cf932aa0
commit e090f7a6f7
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -21,8 +21,8 @@ const CommandPalette = ({ open, onClose }) => {
{ group: "Navigate", label: "Go to Agent showcase", icon: Icons.Sparkles, action: () => location.hash = "#agents" }, { group: "Navigate", label: "Go to Agent showcase", icon: Icons.Sparkles, action: () => location.hash = "#agents" },
{ group: "Navigate", label: "Go to Timeline", icon: Icons.Bolt, action: () => location.hash = "#timeline" }, { group: "Navigate", label: "Go to Timeline", icon: Icons.Bolt, action: () => location.hash = "#timeline" },
{ group: "Navigate", label: "Go to Contact", icon: Icons.Mail, action: () => location.hash = "#contact" }, { group: "Navigate", label: "Go to Contact", icon: Icons.Mail, action: () => location.hash = "#contact" },
...D.projects.map(p => ({ ...D.services.map(p => ({
group: "Projects", group: "Services",
label: p.name, label: p.name,
sub: p.kind, sub: p.kind,
icon: Icons.Cube, icon: Icons.Cube,
+1 -1
View File
@@ -129,7 +129,7 @@ const ProjectCard = ({ p }) => {
}}> }}>
<div> <div>
<div style={{ <div style={{
fontSize: featured ? 22 : 18, fontSize: 18,
fontWeight: 500, fontWeight: 500,
letterSpacing: "-0.01em", letterSpacing: "-0.01em",
color: tint.text, color: tint.text,