Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Payouts Account (create, destroy, get) #40

Merged
merged 10 commits into from
Mar 30, 2024
7 changes: 7 additions & 0 deletions app/components/AccountMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import {
IconAddressBook,
IconCalendarEvent,
IconClock,
IconCurrencyDollar,
IconFingerprint,
IconHeartHandshake,
IconHome,
Expand Down Expand Up @@ -63,6 +64,12 @@ const topMenu = [
icon: IconPlaneDeparture,
isBusiness: true,
},
{
link: '/account/payouts',
label: 'Udbetalinger',
icon: IconCurrencyDollar,
isBusiness: true,
},
];

const bottomMenu = [
Expand Down
1 change: 1 addition & 0 deletions app/components/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ const CardStack = ({artists: starter}: {artists: User[]}) => {
h="380px"
w="380px"
radius="xl"
sizes="(min-width: 45em) 50vw, 100vw"
src={artist.images?.profile?.url}
fallbackSrc="https://placehold.co/400x600?text=Ekspert"
/>
Expand Down
Loading
Loading