diff --git a/src/components/Temurin/ButtonContent/index.tsx b/src/components/Temurin/ButtonContent/index.tsx index 57858ca4..d5681e55 100644 --- a/src/components/Temurin/ButtonContent/index.tsx +++ b/src/components/Temurin/ButtonContent/index.tsx @@ -16,21 +16,26 @@ interface CardData { java_version: string } +const navigationItem = [ + { + title: "Release notes", + link: "/release-notes" + }, + { + title: "Installation guide", + link: "/installation" + }, + { + title: "Supported Platforms", + link: "/supported-platforms" + }, + { + title: "Terms of use", + link: "#" + }, +] + const ButtonContent = ({ results }) => { - const navigationItem = [ - { - title: "Release notes", - }, - { - title: "Installation guide", - }, - { - title: "Supported Configurations", - }, - { - title: "Terms of use", - }, - ] const CardData: CardData[] = [] // loop through results and find macOS and Windows installers results && @@ -68,15 +73,17 @@ const ButtonContent = ({ results }) => {