fe85162128
* style: update gray brand colors * style: update brand colors * chore: upgrade react-components deps * chore: update text split cta link color * style(home): update icons * refactor(home): use learn-callout component * style(downloads): temporary color override * style(community): fix link color * Update website/pages/community/style.css Co-authored-by: Zachary Shilton <4624598+zchsh@users.noreply.github.com> * update package-lock * update deps * add new downloads page * remove extra husky script * chore: upgrades nextjs-scripts dep * chore: upgrades community page vertical text block list * chore: test component pre-releases * chore: upgrade deps chore: upgrades nextjs-scripts * chore: update home icon colors * chore: update home logo grid * chore(website): upgrade deps * style: adjust features icons border radius * style: home hero bg to secondary * chore: upgrade deps for body copy colors * chore: upgrades alert banner * feat: updates favicon * chore: updates deps * content(home): updates assets * content(use-cases:simple container orch): updates content * content(use-cases:non-containerized-app) updates assets * content(use-cases:auto networking with consul): updates assets * style(home): remove use cases icons override * style(home-hero): remove bg pattern on mobile * content(use-cases): updates asset * chore: update assets * chore: updates product download page to alpha * chore: updates product download page to stable Co-authored-by: Zachary Shilton <4624598+zchsh@users.noreply.github.com> Co-authored-by: Jeff Escalante <jescalan@users.noreply.github.com>
63 lines
1.8 KiB
JavaScript
63 lines
1.8 KiB
JavaScript
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'
|
|
|
|
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('./img/nomad-logo.svg')}
|
|
/>
|
|
}
|
|
tutorialLink={{
|
|
href: 'https://learn.hashicorp.com/nomad',
|
|
label: 'View Tutorials at HashiCorp Learn',
|
|
}}
|
|
merchandisingSlot={
|
|
<>
|
|
<div>
|
|
<p>
|
|
A beta for Nomad v1.1.0 is available! The release can be{' '}
|
|
<a href="https://releases.hashicorp.com/nomad/1.1.0-beta1/">
|
|
downloaded here
|
|
</a>
|
|
</p>
|
|
</div>
|
|
</>
|
|
}
|
|
{...staticProps}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export async function getStaticProps() {
|
|
return generateStaticProps({
|
|
product: productSlug,
|
|
latestVersion: VERSION,
|
|
})
|
|
}
|