Skip to content

Commit

Permalink
add: imprint and data privacy protection
Browse files Browse the repository at this point in the history
  • Loading branch information
m-benamor committed Sep 27, 2024
1 parent 403fad6 commit 83c19ba
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 34 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
.DS_Store
*.pem
.idea/sonarlint/
.idea/workspace.xml

# debug
npm-debug.log*
Expand Down
30 changes: 26 additions & 4 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions src/app/Impressum/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import Breadcrumb from "@/components/Common/Breadcrumb";

import {Metadata} from "next";

export const metadata: Metadata = {
title: "Imprint",
// other metadata
};

const Imprint = () => {
return (
<>
<Breadcrumb
pageName="Impressum"
description="Lorem ipsum dolor sit amet, consectetur adipiscing elit. In varius eros eget sapien consectetur ultrices. Ut quis dapibus libero."
/>
</>
);
};

export default Imprint;
26 changes: 0 additions & 26 deletions src/app/about/page.tsx

This file was deleted.

20 changes: 16 additions & 4 deletions src/components/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const Footer = () => {
>
<div className="container">
<div className="-mx-4 flex flex-wrap">
<div className="w-full flex px-4 mb-6">
<div className="w-full flex justify-between px-4 mb-6">
<div className="w-[200px] flex-shrink-0 items-center">
<Link href="/" className="inline-block">
<Image
Expand All @@ -30,10 +30,22 @@ const Footer = () => {
height={40}
/>
</Link>


</div>
<div className="items-center flex ml-auto mb-2 w-[130px] px-4">
<div className="self-center items-center flex mb-2">
<a
href="https://www.dkfz.de/en/impressum.html"
target="_blank"
aria-label="social-link"
className="dark:text-body-color-dark mr-4 text-body-color duration-300 hover:text-primary dark:hover:text-primary"
>Imprint</a>
<a
href="https://www.dkfz.de/en/data-privacy-protection.html"
target="_blank"
aria-label="social-link"
className="dark:text-body-color-dark ml-4 text-body-color duration-300 hover:text-primary dark:hover:text-primary"
>Data privacy protection</a>
</div>
<div className="items-center flex mb-2 pl-4 pr-16">
<a
href="https://bitbucket.org/medicalinformatics/mainzelliste/src/master/"
rel="noopener noreferrer"
Expand Down

0 comments on commit 83c19ba

Please sign in to comment.