-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(nx-dev): update top-level navbar
- Loading branch information
Showing
22 changed files
with
317 additions
and
398 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import { ButtonLinkProps } from '@nx/nx-dev/ui-common'; | ||
import { NxCloudAnimatedIcon } from '@nx/nx-dev/ui-icons'; | ||
|
||
export const requestFreeTrial: ButtonLinkProps = { | ||
href: '/contact/sales', | ||
variant: 'primary', | ||
size: 'small', | ||
title: 'Request a free trial', | ||
children: 'Request a free trial', | ||
}; | ||
|
||
export const tryNxCloudForFree: ButtonLinkProps = { | ||
href: '/pricing', | ||
variant: 'primary', | ||
size: 'small', | ||
title: 'Try Nx Cloud for free', | ||
children: 'Try Nx Cloud for free', | ||
}; | ||
|
||
export const gotoAppButton: ButtonLinkProps = { | ||
href: 'https://nx.app/?utm_source=nx.dev&utm_medium=header-menu', | ||
variant: 'secondary', | ||
size: 'small', | ||
target: '_blank', | ||
title: 'Log in to your Nx Cloud Account', | ||
children: ( | ||
<> | ||
<NxCloudAnimatedIcon className="h-4 w-4" aria-hidden="true" /> | ||
<span>Go to app</span> | ||
</> | ||
), | ||
}; | ||
|
||
export const contactButton: ButtonLinkProps = { | ||
href: '/contact', | ||
variant: 'secondary', | ||
size: 'small', | ||
target: '_blank', | ||
title: 'Contact Us', | ||
children: <span>Contact</span>, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.