-
-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0ab6e60
commit 1406ff6
Showing
1 changed file
with
6 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |