Skip to content

Commit

Permalink
Merge pull request #80 from joshmoore/logos
Browse files Browse the repository at this point in the history
Add funding logos
  • Loading branch information
joshmoore authored Nov 13, 2024
2 parents 78406ee + cbd72fb commit 9e5be0c
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 23 additions & 1 deletion ome2024-ngff-challenge/src/About.svelte
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
<script>
import nfdiLogo from "/nfdi_rgb_Wortmarke_Zusatz_quer.png";
import cziLogo from "/czi-logo-chan-zuckerberg-initiative-logo.png";
let base = import.meta.env.BASE_URL;
</script>

<!-- base element used to define relative links -->
<base href="{base}" />
<div>
<h2>Introduction</h2>
<p>
Expand Down Expand Up @@ -75,10 +83,24 @@
a federated bioimage data system based on OME-Zarr, the largest one we know of.
We hope future challenges will continue to push the state-of-the-art forward.
</p>

<h2>Acknowledgements</h2>
<p>
Coordination of the challenge has been supported by the <a href="https://www.nfdi.de/">German National Research Data
Initiative (NFDI)</a> and the <a href="https://chanzuckerberg.com/">Chan Zuckerberg Initiative</a>:
</p>

<table>
<tr>
<td><img src={nfdiLogo} width="45%"/></td>
<td><img src={cziLogo} width="45%"/></td>
</tr>
</table>

</div>

<style>
div {
margin: 15px;
margin: 20px;
}
</style>

0 comments on commit 9e5be0c

Please sign in to comment.