Skip to content

Commit

Permalink
add about page
Browse files Browse the repository at this point in the history
  • Loading branch information
Nanguage committed Oct 16, 2023
1 parent 83c6b50 commit 94a13f8
Showing 1 changed file with 44 additions and 1 deletion.
45 changes: 44 additions & 1 deletion src/views/AboutView.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,51 @@
<template>
<div class="about">
<h1>This is an about page</h1>
<h1>About U-FISH</h1>
<img id="logo" src="https://avatars.githubusercontent.com/u/144716463?s=400&u=ee7ecd44d0be44fff2ebec00ad301e9229ce4e3a&v=4" />
<div>
<p>
U-FISH is an advanced FISH spot calling algorithm based on deep learning.
</p>
<p>
The "U" in U-FISH represents both the U-Net architecture and the Unified output of enhanced images.
</p>
<p>
See our github repos for more details:
<a href="https://github.com/UFISH-Team">U-FISH Team.</a>
</p>
</div>
<img src="https://github.com/UFISH-Team/U-FISH/blob/main/docs/ufish.png?raw=true" />
<h2>Web app</h2>
<div>
<p>
This web application is built with:
Vue, onnxruntime-web,
<a href="https://imjoy.io/#/">ImJoy</a>
and <a href="https://kaibu.org/docs/#/">Kaibu</a>.
</p>
<p>
The source code is available at <a href="https://github.com/UFISH-Team/UFISH-Team.github.io">here</a>.
</p>
</div>
</div>
</template>

<style>
.about {
text-align: center;
width: 80%;
}
img {
width: 100%;
max-width: 800px;
margin: 20px 0;
}
#logo {
max-width: 200px;
}
.left-align-item {
align-self: start;
justify-content: start;
text-align: left;
}
</style>

0 comments on commit 94a13f8

Please sign in to comment.