add enterprise downloads page (#11750)

This commit is contained in:
Jeff Escalante 2021-12-25 14:42:12 -05:00 committed by GitHub
parent e748508e67
commit 60e7a186e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 78 additions and 36 deletions

View File

@ -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,
}
}

View File

@ -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,
})
}

View File

@ -2,44 +2,10 @@ 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 s from './style.module.css'
import baseProps from 'components/downloads-props'
export default function DownloadsPage(staticProps) {
return (
<ProductDownloadsPage
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',
}}
{...staticProps}
/>
)
return <ProductDownloadsPage {...baseProps()} {...staticProps} />
}
export async function getStaticProps() {