-
-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove January 2025 release banner (#3348)
- Loading branch information
1 parent
cc81124
commit 90f1ae3
Showing
1 changed file
with
9 additions
and
9 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,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 ( | ||
<div className="alert text-white alert-dismissible fade show mb-0 text-center" style={{ backgroundColor: '#ff1464' }} role="alert"> | ||
<strong className='p-1'>21st January 2025:</strong> | ||
We are creating the January 2025 PSU binaries for Eclipse Temurin 8u442, 11.0.26, 17.0.14, 21.0.6 and 23.0.2<br/> | ||
You can track progress <a className='alert-link p-1 text-white' href="https://github.com/adoptium/temurin/issues/67">by platform</a>. | ||
<button type="button" className="btn-close" data-bs-dismiss="alert" aria-label="Close"></button> | ||
</div> | ||
); | ||
// return ( | ||
// <div className="alert text-white alert-dismissible fade show mb-0 text-center" style={{ backgroundColor: '#ff1464' }} role="alert"> | ||
// <strong className='p-1'>21st January 2025:</strong> | ||
// We are creating the January 2025 PSU binaries for Eclipse Temurin 8u442, 11.0.26, 17.0.14, 21.0.6 and 23.0.2<br/> | ||
// You can track progress <a className='alert-link p-1 text-white' href="https://github.com/adoptium/temurin/issues/67">by platform</a>. | ||
// <button type="button" className="btn-close" data-bs-dismiss="alert" aria-label="Close"></button> | ||
// </div> | ||
// ); | ||
}; | ||
|
||
export default Banner; |