Skip to content

Commit 618b7f2

Browse files
committed
Swapped out the Homepage link in the side menu for a link to the Changelog
1 parent a12c7c3 commit 618b7f2

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

apps/webapp/app/components/navigation/ProjectSideMenu.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,11 +119,11 @@ export function ProjectSideMenu() {
119119
data-action="onboarding"
120120
/>
121121
<SideMenuItem
122-
name="Homepage"
123-
icon="external-link"
124-
to="https://trigger.dev"
122+
name="Changelog"
123+
icon="list"
124+
to="https://trigger.dev/changelog"
125125
isCollapsed={isCollapsed}
126-
data-action="onboarding"
126+
data-action="changelog"
127127
target="_blank"
128128
/>
129129
<SideMenuItem

apps/webapp/app/components/primitives/NamedIcon.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ const icons = {
131131
"clipboard-checked": (className: string) => (
132132
<ClipboardDocumentCheckIcon className={cn("text-dimmed", className)} />
133133
),
134+
list: (className: string) => <ListBulletIcon className={cn("text-slate-400", className)} />,
134135
log: (className: string) => (
135136
<ChatBubbleLeftEllipsisIcon className={cn("text-slate-400", className)} />
136137
),

0 commit comments

Comments
 (0)