From 043f3a73a4bddf65d3516913a7568ddeedf8489a Mon Sep 17 00:00:00 2001 From: James Rasell Date: Wed, 19 Jul 2023 21:17:11 +0100 Subject: [PATCH] update Nomad v1.6.0 download box (#2091) update Nomad v1.6.0 download box We previously used this file to style the Nomad beta/RC download box, but, moving forward, we're not going to update this component anymore. --- src/pages/nomad/downloads/index.tsx | 26 +--------------------- src/pages/nomad/downloads/style.module.css | 9 -------- 2 files changed, 1 insertion(+), 34 deletions(-) delete mode 100644 src/pages/nomad/downloads/style.module.css diff --git a/src/pages/nomad/downloads/index.tsx b/src/pages/nomad/downloads/index.tsx index ed55a4ffcf..113b6836ed 100644 --- a/src/pages/nomad/downloads/index.tsx +++ b/src/pages/nomad/downloads/index.tsx @@ -8,33 +8,9 @@ import nomadData from 'data/nomad.json' import { ProductData } from 'types/products' import ProductDownloadsView from 'views/product-downloads-view' import { generateGetStaticProps } from 'views/product-downloads-view/server' -import InlineAlert from 'components/inline-alert' -import ButtonLink from 'components/button-link' -import s from './style.module.css' const NomadDownloadsPage = (props) => { - return ( - } - href="https://releases.hashicorp.com/nomad/1.6.0-rc.1/" - /> - } - /> - } - /> - ) + return } const getStaticProps = generateGetStaticProps(nomadData as ProductData) diff --git a/src/pages/nomad/downloads/style.module.css b/src/pages/nomad/downloads/style.module.css deleted file mode 100644 index 024cbd2952..0000000000 --- a/src/pages/nomad/downloads/style.module.css +++ /dev/null @@ -1,9 +0,0 @@ -/** - * Copyright (c) HashiCorp, Inc. - * SPDX-License-Identifier: MPL-2.0 - */ - -.downloadLink { - margin-left: -11px; - margin-top: -6px; -}