diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 617fe22272396cf3e28d1e6858112d9d09b250e0..780e5f4e3367277dc23bf8354ad829d9130a54ad 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -45,7 +45,7 @@ build:
     - check:lint
     - check:test
 
-deploy_dev:
+deploy:dev:
   image: docker
   stage: deploy
   only:
@@ -63,7 +63,7 @@ deploy_dev:
   dependencies:
     - build
 
-deploy_prod:
+deploy:prod:
   image: docker
   stage: deploy
   only:
diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts
index e5c411d91f7036a75d68835c672a77be4d07e6e9..d722f37f5958dc5c03c3cef453e6976010ce9201 100644
--- a/src/app/app-routing.module.ts
+++ b/src/app/app-routing.module.ts
@@ -1,18 +1,21 @@
-import { NgModule } from '@angular/core';
-import { Routes, RouterModule } from '@angular/router';
+import {NgModule} from '@angular/core';
+import {Routes, RouterModule} from '@angular/router';
 import {ExplorerPageComponent} from './pages/explorer-page/explorer-page.component';
 import {AboutPageComponent} from './pages/about-page/about-page.component';
 import {HomePageComponent} from './pages/home-page/home-page.component';
+import {CitationPageComponent} from './pages/citation-page/citation-page.component';
 
 export const routes: Routes = [
-  { path: '', component: HomePageComponent },
-  { path: 'explorer', component: ExplorerPageComponent},
-  { path: 'explorer/:protein', component: ExplorerPageComponent},
-  { path: 'about', component: AboutPageComponent }
+  {path: '', component: HomePageComponent},
+  {path: 'explorer', component: ExplorerPageComponent},
+  {path: 'explorer/:protein', component: ExplorerPageComponent},
+  {path: 'cite', component: CitationPageComponent},
+  {path: 'about', component: AboutPageComponent}
 ];
 
 @NgModule({
   imports: [RouterModule.forRoot(routes)],
   exports: [RouterModule]
 })
-export class AppRoutingModule { }
+export class AppRoutingModule {
+}
diff --git a/src/app/app.component.html b/src/app/app.component.html
index 0b629bc97d450992e426898145d6ff620da96d11..0d6f4dabdefff1678d3ee31b5aebcfe596a7f050 100644
--- a/src/app/app.component.html
+++ b/src/app/app.component.html
@@ -19,6 +19,10 @@
           <span class="icon"><i class="fa fa-project-diagram"></i></span>
           <span>Explorer</span>
         </a>
+        <a routerLink="/cite" routerLinkActive="is-active" class="navbar-item is-hoverable">
+          <span class="icon"><i class="fa fa-feather"></i></span>
+          <span>Cite</span>
+        </a>
         <a routerLink="/about" routerLinkActive="is-active" class="navbar-item is-hoverable">
           <span class="icon"><i class="fa fa-question"></i></span>
           <span>About</span>
diff --git a/src/app/app.module.ts b/src/app/app.module.ts
index bfece6a5f2ab67d55f8886c6eba73baa90315941..e8bd2a36cb85e9c5bd44955ed112702665274204 100644
--- a/src/app/app.module.ts
+++ b/src/app/app.module.ts
@@ -22,6 +22,7 @@ import {InfoTileComponent} from './components/info-tile/info-tile.component';
 import {CustomProteinsComponent} from './dialogs/custom-proteins/custom-proteins.component';
 
 import {AnalysisService} from './analysis.service';
+import { CitationPageComponent } from './pages/citation-page/citation-page.component';
 
 
 @NgModule({
@@ -38,6 +39,7 @@ import {AnalysisService} from './analysis.service';
     ToggleComponent,
     InfoTileComponent,
     CustomProteinsComponent,
+    CitationPageComponent,
   ],
   imports: [
     BrowserModule,
diff --git a/src/app/pages/about-page/about-page.component.html b/src/app/pages/about-page/about-page.component.html
index a8a0c4e1ab919bc0f1817f2ce96b62dd8a0704f5..2c35f2bcde2545e391e09797ed08e7ac563faa45 100644
--- a/src/app/pages/about-page/about-page.component.html
+++ b/src/app/pages/about-page/about-page.component.html
@@ -1,6 +1,6 @@
 <div class="scroll">
   <div class="content">
-    <section class="hero is-small is-primary">
+    <section class="hero is-primary">
       <div class="hero-body">
         <div class="container">
           <h1 class="title">About CoVex</h1>
@@ -44,10 +44,11 @@
             a list of drugs ranked by default using TrustRank.</p>
           <h2>Help/Contact information</h2>
           <ul>
-            <li>Systems and Network Medicine: Sepideh Sadegh (sadegh_AT_wzw.tum.de)</li>
+            <li>General support and inquiries: Gihanna Galindez (gihanna.gaye_AT_wzw.tum.de)</li>
+            <li>Systems and network medicine: Sepideh Sadegh (sadegh_AT_wzw.tum.de)</li>
             <li>Web platform: Julian Matschinske (julian.matschinske_AT_wzw.tum.de)</li>
             <li>Project coordination: Prof. Dr. Jan Baumbach (jan.baumbach_AT_wzw.tum.de)</li>
-            <li>Lab Website:  <a href="http://www.exbio.de">http://www.exbio.de</a> </li>
+            <li>Lab website: <a href="http://www.exbio.de">http://www.exbio.de</a> </li>
           </ul>
 
           <br>
diff --git a/src/app/pages/citation-page/citation-page.component.html b/src/app/pages/citation-page/citation-page.component.html
new file mode 100644
index 0000000000000000000000000000000000000000..2baba121364522b9ee493fac7f08cbc7d95022eb
--- /dev/null
+++ b/src/app/pages/citation-page/citation-page.component.html
@@ -0,0 +1,39 @@
+<div class="scroll">
+  <div class="content">
+    <section class="hero is-primary">
+      <div class="hero-body">
+        <div class="container">
+          <h1 class="title">Cite CoVex</h1>
+        </div>
+      </div>
+    </section>
+
+    <div class="hero container">
+      <div class="column is-8 is-offset-2">
+        <div class="content">
+          <h2>Citation</h2>
+          <p>
+            If you use CoVex in your work please reference it as follows:
+          </p>
+          <pre>{{"@misc{sadegh2020exploring,"}}
+{{"    title={Exploring the SARS-CoV-2 virus-host-drug interactome for drug repurposing},"}}
+{{"    author={Sepideh Sadegh and Julian Matschinske and David B. Blumenthal and Gihanna Galindez and Tim Kacprowski and Markus List and Reza Nasirigerdeh and Mhaned Oubounyt and Andreas Pichlmair and Tim Daniel Rose and Marisol Salgado-Albarrán and Julian Späth and Alexey Stukalov and Nina K. Wenke and Kevin Yuan and Josch K. Pauling and Jan Baumbach},"}}
+{{"    year={2020},"}}
+{{"    eprint={2004.12420},"}}
+{{"    archivePrefix={arXiv},"}}
+{{"    primaryClass={q-bio.MN}"}}
+{{"}"}}</pre>
+          Preprint: <a href="https://arxiv.org/abs/2004.12420">https://arxiv.org/abs/2004.12420</a>
+
+          <h2>Source code</h2>
+          <p>
+            The source code is available upon request: julian.matschinske_AT_wzw.tum.de
+          </p>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+
+
+
diff --git a/src/app/pages/citation-page/citation-page.component.scss b/src/app/pages/citation-page/citation-page.component.scss
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/src/app/pages/citation-page/citation-page.component.ts b/src/app/pages/citation-page/citation-page.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..e7bdfd2712e179c40effd151efd2499272b64976
--- /dev/null
+++ b/src/app/pages/citation-page/citation-page.component.ts
@@ -0,0 +1,15 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+  selector: 'app-citation-page',
+  templateUrl: './citation-page.component.html',
+  styleUrls: ['./citation-page.component.scss']
+})
+export class CitationPageComponent implements OnInit {
+
+  constructor() { }
+
+  ngOnInit(): void {
+  }
+
+}