You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
476 B
22 lines
476 B
export const ExcalidrawPlusPromoBanner = ({ |
|
isSignedIn, |
|
}: { |
|
isSignedIn: boolean; |
|
}) => { |
|
return ( |
|
<a |
|
href={ |
|
isSignedIn |
|
? import.meta.env.VITE_APP_PLUS_APP |
|
: `${ |
|
import.meta.env.VITE_APP_PLUS_LP |
|
}/plus?utm_source=excalidraw&utm_medium=app&utm_content=guestBanner#excalidraw-redirect` |
|
} |
|
target="_blank" |
|
rel="noopener" |
|
className="plus-banner" |
|
> |
|
Excalidraw+ |
|
</a> |
|
); |
|
};
|
|
|