-
Notifications
You must be signed in to change notification settings - Fork 0
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
Jan Havlik
committed
Apr 5, 2024
1 parent
071963f
commit 7aea926
Showing
14 changed files
with
128 additions
and
30 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
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
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
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 |
---|---|---|
|
@@ -7,4 +7,5 @@ export type FormData = { | |
end: number; | ||
chromosome: string[]; | ||
analysis: string; | ||
name: string; | ||
}; |
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
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
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
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
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,11 +1,11 @@ | ||
import BarChartIcon from "@mui/icons-material/BarChart"; | ||
import ContactsIcon from "@mui/icons-material/Contacts"; | ||
import EditIcon from "@mui/icons-material/Edit"; | ||
import TableChartIcon from "@mui/icons-material/TableChart"; | ||
import TroubleshootIcon from '@mui/icons-material/Troubleshoot'; | ||
import AccountTreeIcon from '@mui/icons-material/AccountTree'; | ||
|
||
export const MENU_ITEMS = [ | ||
{ label: "Browser", icon: <TableChartIcon />, path: "/" }, | ||
{ label: "Analysis", icon: <EditIcon />, path: "/analysis" }, | ||
{ label: "Browser", icon: <AccountTreeIcon />, path: "/" }, | ||
{ label: "Analysis", icon: <TroubleshootIcon />, path: "/analysis" }, | ||
{ label: "Statistics", icon: <BarChartIcon />, path: "/statistics" }, | ||
{ label: "Contact", icon: <ContactsIcon />, path: "/contact" }, | ||
]; |
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.
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
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
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,8 +1,52 @@ | ||
import Typography from "@mui/material/Typography"; | ||
import { Divider } from "@mui/material"; | ||
import type { NextPage } from "next"; | ||
|
||
|
||
const Contact: NextPage = () => { | ||
return <Typography>Contact</Typography>; | ||
}; | ||
return ( | ||
<div> | ||
<Typography variant="h6"> | ||
Primary Contact | ||
</Typography> | ||
<Typography> | ||
For general inquiries about <em>DNArchive</em>, please contact: | ||
</Typography> | ||
<Typography> | ||
<strong>Name:</strong> prof. Václav Brázda | ||
</Typography> | ||
<Typography> | ||
<strong>Email:</strong> vaclav@ibp.cz | ||
</Typography> | ||
|
||
<Divider /> | ||
|
||
<Typography variant="h6"> | ||
Technical Support Information | ||
</Typography> | ||
<Typography> | ||
For technical support, bug reports, or feature requests related to <em>DNArchive</em>, please reach out to our support team: | ||
</Typography> | ||
<Typography> | ||
<strong>Support Email:</strong> jan.havlik@protonmail.com | ||
</Typography> | ||
<Typography> | ||
<strong>GitHub Issues:</strong> <a href="https://github.com/jan-havlik/dnarchive-server/issues">github.com/jan-havlik/dnarchive-server/issues</a> | ||
</Typography> | ||
|
||
<Divider /> | ||
|
||
<Typography variant="h6"> | ||
Collaboration and Feedback | ||
</Typography> | ||
<Typography> | ||
We are always looking for opportunities to collaborate and improve <em>DNArchive</em>. If you have suggestions, feedback, or are interested in collaborating with us, please contact: | ||
</Typography> | ||
<Typography> | ||
<strong>Collaboration Inquiries:</strong> vaclav@ibp.cz | ||
</Typography> | ||
</div> | ||
); | ||
} | ||
|
||
export default Contact; |