-
Notifications
You must be signed in to change notification settings - Fork 22
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
Showing
72 changed files
with
34,573 additions
and
9,316 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 |
---|---|---|
|
@@ -16,6 +16,7 @@ build | |
# misc | ||
.DS_Store | ||
*.pem | ||
**/.vscode | ||
|
||
# debug | ||
npm-debug.log* | ||
|
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
# run the lint command | ||
npm run lint | ||
npm run lint |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"extends": ["@elixir-cloud"], | ||
"rules": { | ||
"prettier/prettier": "off", | ||
"import/extensions": [ | ||
"error", | ||
"ignorePackages", | ||
{ | ||
"": "never", | ||
"js": "never", | ||
"jsx": "never", | ||
"ts": "never", | ||
"tsx": "never" | ||
} | ||
] | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.next | ||
.turbo | ||
.vercel |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"singleQuote": true, | ||
"trailingComma": "all", | ||
"tabWidth": 2, | ||
"semi": true, | ||
"printWidth": 100, | ||
"jsxSingleQuote": true, | ||
"arrowParens": "always", | ||
"overrides": [ | ||
{ | ||
"files": ".prettierrc", | ||
"options": { | ||
"parser": "json" | ||
} | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
import Image from 'next/image'; | ||
|
||
function Footer() { | ||
return ( | ||
<div className='footer flex justify-center items-center p-1 border-t-2 rounded-md'> | ||
<div className='container flex flex-col sm:flex-row justify-between px-4'> | ||
<div className='footer-icons flex justify-center items-center my-2 gap-2'> | ||
<a href='https://elixir-cloud.dcc.sib.swiss/' target='_blank' rel='noopener noreferrer'> | ||
<Image | ||
src='/elixir-cloud/logo.svg' | ||
alt='Elixir Cloud & AAI' | ||
className='footer-logo' | ||
width={75} | ||
height={75} | ||
/> | ||
</a> | ||
<Image | ||
src='/cloud-sdk/light.svg' | ||
alt='Cloud SDK' | ||
className='footer-logo' | ||
width={75} | ||
height={75} | ||
/> | ||
<a href='https://elixir-europe.org/' target='_blank' rel='noopener noreferrer'> | ||
<Image | ||
src='/elixir/light.svg' | ||
alt='Elixir' | ||
className='footer-logo' | ||
width={75} | ||
height={75} | ||
/> | ||
</a> | ||
</div> | ||
<div className='flex flex-col text-gray-500 text-xs sm:text-sm justify-center items-center'> | ||
<p className='message'>Released under Apache 2.0 License</p> | ||
<p className='copyright'>Copyright © 2023-{new Date().getFullYear()} Elixir</p> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default Footer; |
Oops, something went wrong.