Skip to content

Commit

Permalink
October CPU banner (#2335)
Browse files Browse the repository at this point in the history
  • Loading branch information
sophia-guo authored Oct 13, 2023
1 parent 0ab6e60 commit 1406ff6
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions src/components/Banner/index.tsx
Original file line number Diff line number Diff line change
@@ -1,25 +1,21 @@
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 (
<div className="alert text-white alert-dismissible fade show mb-0 text-center" style={{ backgroundColor: '#ff1464' }} role="alert">
<strong className='p-1'>9th October 2023:</strong>
We have received the new Java 21 specification tests
and expect to
formally <a href="https://github.com/adoptium/temurin/issues/8">release Eclipse Temurin 21 shortly</a>.
<br/>
For further information, please read the update
in <a href="/blog/2023/09/temurin21-delay">our blog</a>.
<strong className='p-1'>13th October 2023:</strong>
We are creating the October 2023 PSU binaries for Eclipse Temurin 8u391, 11.0.21 and 17.0.9 and 21.0.1<br/>
You can track progress <a className='alert-link p-1 text-white' href="https://github.com/adoptium/temurin/issues/6">by platform</a>
or <a className='alert-link p-1 text-white' href="https://github.com/adoptium/temurin/issues/5">by detailed release checklist</a>.
<button type="button" className="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
);
*/

};

export default Banner;

0 comments on commit 1406ff6

Please sign in to comment.