diff --git a/components/mainPage/sponsors/Sponsors.vue b/components/mainPage/sponsors/Sponsors.vue
index eafd0c007d8bfed146267acc066d98c6d962a1d0..9c20eb977004c1718a45e2b35a14c9bdf2cab132 100644
--- a/components/mainPage/sponsors/Sponsors.vue
+++ b/components/mainPage/sponsors/Sponsors.vue
@@ -1,6 +1,6 @@
 <template>
   <v-card tile flat>
-    <v-card-subtitle> EUbOPEN Partners </v-card-subtitle>
+    <v-card-title> EUbOPEN Partners </v-card-title>
     <v-divider />
     <v-card-text>
       <v-row>
diff --git a/pages/acknowledgement.vue b/pages/acknowledgement.vue
new file mode 100644
index 0000000000000000000000000000000000000000..f71bfa5be1962a23e029f7940763d43d999da9e2
--- /dev/null
+++ b/pages/acknowledgement.vue
@@ -0,0 +1,21 @@
+<template>
+  <v-card tile flat>
+    <v-card-title> Acknowledgement </v-card-title>
+    <v-divider />
+    <v-card-text>
+      <p class="text-justify">
+        The EUbOPEN project has received funding from the Innovative Medicines
+        Initiative 2 Joint Undertaking under grant agreement No 875510. This
+        Joint Undertaking receives support from the European Union's Horizon
+        2020 research and innovation programme, EFPIA companies and Associated
+        Partners: KTH, OICR, Diamond and McGill.
+      </p>
+    </v-card-text>
+  </v-card>
+</template>
+
+<script>
+export default {}
+</script>
+
+<style></style>
diff --git a/pages/disclaimer.vue b/pages/disclaimer.vue
new file mode 100644
index 0000000000000000000000000000000000000000..b559e7d5f2806a9aba0db16c8f9976114440d6ca
--- /dev/null
+++ b/pages/disclaimer.vue
@@ -0,0 +1,19 @@
+<template>
+  <v-card tile flat>
+    <v-card-title> Disclaimer </v-card-title>
+    <v-divider />
+    <v-card-text>
+      <p class="text-justify">
+        This communication reflects the views of the authors and neither IMI nor
+        the European Union, EFPIA or any Associated Partners are liable for any
+        use that may be made of the information contained herein.
+      </p>
+    </v-card-text>
+  </v-card>
+</template>
+
+<script>
+export default {}
+</script>
+
+<style></style>