diff --git a/apps/docs/docusaurus.config.ts b/apps/docs/docusaurus.config.ts
index 74348141..3e3c35e9 100644
--- a/apps/docs/docusaurus.config.ts
+++ b/apps/docs/docusaurus.config.ts
@@ -8,7 +8,7 @@ const config: Config = {
     favicon: "img/favicon.ico",
 
     // Set the production url of your site here
-    url: "https://bandada-docs.vercel.app",
+    url: "https://docs.bandada.pse.dev",
     // Set the /<baseUrl>/ pathname under which your site is served
     // For GitHub pages deployment, it is often '/<projectName>/'
     baseUrl: "/",
@@ -50,8 +50,11 @@ const config: Config = {
     ],
 
     themeConfig: {
-        // Replace with your project's social card
-        image: "img/docusaurus-social-card.jpg",
+        // Social media card
+        image: "img/social-media.png",
+        colorMode: {
+            defaultMode: "dark"
+        },
         navbar: {
             title: "bandada",
             logo: {
@@ -65,7 +68,7 @@ const config: Config = {
                     position: "right"
                 },
                 {
-                    href: "https://github.com/facebook/docusaurus",
+                    href: "https://github.com/bandada-infra",
                     label: "GitHub",
                     position: "right"
                 }
diff --git a/apps/docs/src/components/RenderArticles/index.tsx b/apps/docs/src/components/RenderArticles/index.tsx
index 02435276..46aa849e 100644
--- a/apps/docs/src/components/RenderArticles/index.tsx
+++ b/apps/docs/src/components/RenderArticles/index.tsx
@@ -19,7 +19,7 @@ export default function RenderArticles(): JSX.Element {
                         >
                             {article.title}
                         </a>{" "}
-                        - {article.authors.join(", ")}{" "}
+                        - {article.authors.join(", ")} (<i>{article.date}</i>)
                     </div>
                 ))}
         </div>
diff --git a/apps/docs/src/components/RenderVideos/index.tsx b/apps/docs/src/components/RenderVideos/index.tsx
index 70879c3f..ccfdac67 100644
--- a/apps/docs/src/components/RenderVideos/index.tsx
+++ b/apps/docs/src/components/RenderVideos/index.tsx
@@ -19,7 +19,7 @@ export default function RenderVideos(): JSX.Element {
                         >
                             {video.title}
                         </a>{" "}
-                        - {video.speakers.join(", ")}{" "}
+                        - {video.speakers.join(", ")} (<i>{video.date}</i>)
                     </div>
                 ))}
         </div>
diff --git a/apps/docs/src/css/custom.css b/apps/docs/src/css/custom.css
index 860de087..6529f39e 100644
--- a/apps/docs/src/css/custom.css
+++ b/apps/docs/src/css/custom.css
@@ -29,6 +29,10 @@
     --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
 }
 
+html {
+    font-size: 18px;
+}
+
 .navbar__title {
     font-size: 25px;
 }
diff --git a/apps/docs/static/img/social-media.png b/apps/docs/static/img/social-media.png
new file mode 100644
index 00000000..91737202
Binary files /dev/null and b/apps/docs/static/img/social-media.png differ