-
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 #84 from ScilifelabDataCentre/disable-dark-mode
Small updates to prepare for conference
- Loading branch information
Showing
7 changed files
with
337 additions
and
474 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ import { ReactElement } from "react"; | |
|
||
import Link from "next/link"; | ||
import { ILink } from "@/interfaces/types"; | ||
import { ContactPageContent } from "@/content/content"; | ||
import ContactFormComponent from "@/components/ContactFormComponent"; | ||
import { TrackPageViewIfEnabled } from "@/util/cookiesHandling"; | ||
import Title from "@/components/common/title"; | ||
|
@@ -34,12 +33,39 @@ export default function ContactPage(): ReactElement { | |
))} | ||
</ul> | ||
</div> | ||
<Title level={1}>Contact</Title> | ||
<div className="divider">{ContactPageContent.content[0].header}</div> | ||
<p className="mb-4">{ContactPageContent.content[0].body}</p> | ||
<ContactFormComponent /> | ||
<div className="divider">{ContactPageContent.content[1].header}</div> | ||
<p>{ContactPageContent.content[1].body}</p> | ||
<div className="flex flex-col gap-y-4"> | ||
<Title level={1}>Contact</Title> | ||
<p> | ||
Please fill out this form if you need to contact us at the Swedish | ||
Precision Medicine Portal. Provide your contact information and we | ||
should get back to you within a weeks time. | ||
</p> | ||
<ContactFormComponent /> | ||
<Title level={2}>Personal data policy</Title> | ||
<p> | ||
The personal data you provide in this form, your name and email | ||
address, will be used to process your suggestion of added resource to | ||
the Swedish Precision Medicine Portal. It is a service run by the | ||
SciLifeLab Data Centre on assignment from the … It serves to address… | ||
The information you provide will be processed for research purposes, | ||
i.e. using the lawful basis of public interest and in accordance with | ||
Regulation (EU) 2016/679 of the European Parliament and of the Council | ||
of 27 April 2016, the General Data Protection Regulation. The | ||
following parties will have access to processing your personal data: | ||
SciLifeLab Data Centre, Uppsala University. Your personal data will be | ||
deleted when no longer needed, or when stipulated by the archival | ||
rules for the university as a government authority. If you want to | ||
update or remove your personal data please contact the controller | ||
SciLifeLab Data Centre at Uppsala University using{" "} | ||
<a | ||
href="mailto:[email protected]" | ||
className="text-primary hover:text-black underline" | ||
> | ||
[email protected] | ||
</a> | ||
. | ||
</p> | ||
</div> | ||
</div> | ||
); | ||
} |
Oops, something went wrong.