-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add enterprise downloads page (#11750)
- Loading branch information
Showing
3 changed files
with
78 additions
and
36 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import s from '../../pages/downloads/style.module.css' | ||
|
||
export default function DownloadsProps(preMerchandisingSlot) { | ||
return { | ||
getStartedDescription: | ||
'Follow step-by-step tutorials on the essentials of Nomad.', | ||
getStartedLinks: [ | ||
{ | ||
label: 'Getting Started', | ||
href: 'https://learn.hashicorp.com/collections/nomad/get-started', | ||
}, | ||
{ | ||
label: 'Deploy and Manage Nomad Jobs', | ||
href: 'https://learn.hashicorp.com/collections/nomad/manage-jobs', | ||
}, | ||
{ | ||
label: 'Explore the Nomad Web UI', | ||
href: 'https://learn.hashicorp.com/collections/nomad/web-ui', | ||
}, | ||
{ | ||
label: 'View all Nomad tutorials', | ||
href: 'https://learn.hashicorp.com/nomad', | ||
}, | ||
], | ||
logo: ( | ||
<img | ||
className={s.logo} | ||
alt="Nomad" | ||
src={require('@hashicorp/mktg-logos/product/nomad/primary/color.svg')} | ||
/> | ||
), | ||
tutorialLink: { | ||
href: 'https://learn.hashicorp.com/nomad', | ||
label: 'View Tutorials at HashiCorp Learn', | ||
}, | ||
merchandisingSlot: preMerchandisingSlot && preMerchandisingSlot, | ||
} | ||
} |
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,38 @@ | ||
import VERSION from 'data/version' | ||
import { productSlug } from 'data/metadata' | ||
import ProductDownloadsPage from '@hashicorp/react-product-downloads-page' | ||
import { generateStaticProps } from '@hashicorp/react-product-downloads-page/server' | ||
import baseProps from 'components/downloads-props' | ||
import s from './style.module.css' | ||
|
||
export default function DownloadsPage(staticProps) { | ||
return ( | ||
<> | ||
<ProductDownloadsPage | ||
enterpriseMode={true} | ||
{...baseProps( | ||
<p className={s.legalNotice}> | ||
<em> | ||
The following shall apply unless your organization has a | ||
separately signed Enterprise License Agreement or Evaluation | ||
Agreement governing your use of the package: Enterprise packages | ||
in this repository are subject to the license terms located in the | ||
package. Please read the license terms prior to using the package. | ||
Your installation and use of the package constitutes your | ||
acceptance of these terms. If you do not accept the terms, do not | ||
use the package. | ||
</em> | ||
</p> | ||
)} | ||
{...staticProps} | ||
/> | ||
</> | ||
) | ||
} | ||
|
||
export async function getStaticProps() { | ||
return generateStaticProps({ | ||
product: productSlug, | ||
latestVersion: VERSION, | ||
}) | ||
} |
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