New goals page. Upgraded prisma.

This commit is contained in:
Mike Cao 2025-05-31 02:11:18 -07:00
parent 99330a1a4d
commit 49bcbfd7f9
65 changed files with 769 additions and 1195 deletions

View file

@ -67,7 +67,7 @@ export function WebsiteNav({ websiteId }: { websiteId: string }) {
id: 'journeys',
label: formatMessage(labels.journey),
icon: <Path />,
path: '/goals',
path: '/journeys',
},
{
id: 'retention',
@ -106,7 +106,7 @@ export function WebsiteNav({ websiteId }: { websiteId: string }) {
<Link key={id} href={renderTeamUrl(`/websites/${websiteId}${path}`)}>
<NavMenuItem isSelected={isSelected}>
<Row alignItems="center" gap>
<Icon style={{ fill: 'currentcolor' }}>{icon}</Icon>
<Icon>{icon}</Icon>
<Text>{label}</Text>
</Row>
</NavMenuItem>