Skip to content

Commit

Permalink
Merge pull request #1188 from hubmapconsortium/banner
Browse files Browse the repository at this point in the history
Add top banner to main site
  • Loading branch information
yuanzhou authored Aug 1, 2023
2 parents ad1e3fb + 473e606 commit e6837e6
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ export function App (props){
var [dataTypeListPrimary, setDataTypeListPrimary] = useState({});
var [userGroups, setUserGroups] = useState({});
var [userDataGroups, setUserDataGroups] = useState({});
var [bannerShow,setBannerShow] = useState(true);
let navigate = useNavigate();


Expand Down Expand Up @@ -309,8 +310,19 @@ export function App (props){


</Drawer>
{ !isLoading && bannerShow && (
<div className="alert alert-info" role="alert">
<h2>HuBMAP Data Providers:</h2>

<Typography>

We are in the process of releasing updated schemas for all HuBMAP organs, samples, and assay types. <strong>Starting August 7 we will no longer accept any submissions using the current metadata and directory structure schemas. </strong></Typography>
<Typography>


To prepare for this change, <strong>please start to prepare your submissions using the next-generation metadata and directory structure schemas you've been working on with the Data Coordination Working Group.</strong> We will update this message with a link to those next-generation schemas this week. Please contact <a href="mailto:[email protected] ">[email protected]</a> if you have any questions about this.
</Typography>
</div>
)}
{isLoading &&(
<LinearProgress />
)}
Expand Down

0 comments on commit e6837e6

Please sign in to comment.