From f73c1308baf8cf6e1332aa5bdc3e3b40e8d68b77 Mon Sep 17 00:00:00 2001 From: Haroon Khel <34969545+Haroon-Khel@users.noreply.github.com> Date: Wed, 17 Jan 2024 18:26:28 +0800 Subject: [PATCH] Update website banner for January 2024 release (#2583) * add banner * correct date * forgot to comment out return null --- src/components/Banner/index.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/components/Banner/index.tsx b/src/components/Banner/index.tsx index 747b67742..3301d262c 100644 --- a/src/components/Banner/index.tsx +++ b/src/components/Banner/index.tsx @@ -1,19 +1,19 @@ import React from 'react'; const Banner = () => { - return null; + // return null; // The following is an example that can be used for future banner alert // Comment Out The Above Line ( return null ; ) and uncomment the below - // return ( - //
- // 13th October 2023: - // We are creating the October 2023 PSU binaries for Eclipse Temurin 8u392, 11.0.21 and 17.0.9 and 21.0.1
- // You can track progress by platform. - // - //
- // ); + return ( +
+ 16th January 2024: + We are creating the January 2024 PSU binaries for Eclipse Temurin 8u402, 11.0.22 and 17.0.10 and 21.0.2
+ You can track progress by platform. + +
+ ); };