-
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.
Merge pull request #144 from QCDIS/142-add-credits-page
142 add credits page
- Loading branch information
Showing
15 changed files
with
81 additions
and
5,798 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import React from "react"; | ||
import Link from "next/link"; | ||
|
||
const Footer: React.FC = () => { | ||
|
||
return ( | ||
<div className="flex flex-col w-full items-center mb-2"> | ||
<p className="text-xs text-gray-700"> | ||
Powered by NaaVRE / LifeWatch ERIC VLIC ( | ||
<Link | ||
href="/about" | ||
className="hover:underline" | ||
> | ||
About | ||
</Link> | ||
) | ||
</p> | ||
</div> | ||
) | ||
} | ||
|
||
export default Footer |
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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
import Link from 'next/link'; | ||
import getConfig from 'next/config' | ||
|
||
import {Nav} from '../templates/Nav'; | ||
|
||
const About = ({}) => { | ||
|
||
const { publicRuntimeConfig } = getConfig() | ||
|
||
return ( | ||
<div className="min-h-screen flex flex-col mx-auto bg-gradient-to-b from-sky-200 to-orange-300"> | ||
<Nav/> | ||
<div className="grow container mx-auto space-y-5 py-10"> | ||
|
||
<div className="max-w-full rounded shadow-lg bg-white p-8"> | ||
<h1 className="text-2xl text-gray-800 mb-8"> | ||
About NaaVRE | ||
</h1> | ||
<p className="text-base text-gray-800"> | ||
NaaVRE is built by LifeWatch ERIC VLIC and the QCDIS team at the University of Amsterdam. | ||
</p> | ||
|
||
<div className="flex flex-col sm:flex-row items-center mt-8"> | ||
<Link href="https://www.lifewatch.eu/"> | ||
<img | ||
alt="LifeWatch ERIC logo" | ||
src={`${publicRuntimeConfig.staticFolder}/logo-lifewatch-eric-medium.png`} | ||
width="150" | ||
className="m-10" | ||
/> | ||
</Link> | ||
<Link href="https://www.uva.nl/en"> | ||
<img | ||
alt="University of Amsterdam logo" | ||
src={`${publicRuntimeConfig.staticFolder}/logo-uva-medium.png`} | ||
width="170" | ||
className="m-10" | ||
/> | ||
</Link> | ||
</div> | ||
|
||
</div> | ||
|
||
</div> | ||
</div> | ||
|
||
) | ||
}; | ||
|
||
export default About; |
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 was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.