From e5d9d3dfbcacc7c23919b01e5a0a852552fbf696 Mon Sep 17 00:00:00 2001 From: Tim Ellison Date: Fri, 17 May 2024 12:14:25 +0100 Subject: [PATCH] Remove banner (#2864) --- 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 d27e7172c..97de85c38 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 ( -
- Case Study: Building the World's Most Secure OpenJDK Distribution
- Find out how the Eclipse Foundation and Adoptium Working Group are pioneering software supply chain security with Eclipse Temurin: - Download now - -
- ); + // return ( + //
+ // Case Study: Building the World's Most Secure OpenJDK Distribution
+ // Find out how the Eclipse Foundation and Adoptium Working Group are pioneering software supply chain security with Eclipse Temurin: + // Download now + // + //
+ // ); }; export default Banner;