fix: remove stale featured ref in projects, fix command-palette D.projects -> D.services
This commit is contained in:
@@ -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
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user