From e3f1051f2275e03499937003aab4294a5eaa20b8 Mon Sep 17 00:00:00 2001 From: Andrew Leonard <31470007+andrew-m-leonard@users.noreply.github.com> Date: Wed, 18 Sep 2024 11:22:21 +0100 Subject: [PATCH] Add Sept release banner (#3078) * Add Sept release banner Signed-off-by: Andrew Leonard * Add Sept release banner Signed-off-by: Andrew Leonard --------- Signed-off-by: Andrew Leonard --- 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 5a0e94a31..1df280577 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 ( - //
- // 16th July 2024: - // We are creating the July 2024 PSU binaries for Eclipse Temurin 8u422, 11.0.24, 17.0.12, 21.0.4 and 22.0.2
- // You can track progress by platform. - // - //
- // ); + return ( +
+ 17th September 2024: + We are creating the September 2024 PSU binaries for Eclipse Temurin 23
+ You can track progress by platform. + +
+ ); }; export default Banner;