diff --git a/docs/pages/blog/december-2019-update.js b/docs/pages/blog/december-2019-update.js
new file mode 100644
index 00000000000000..920c48e4c0f14b
--- /dev/null
+++ b/docs/pages/blog/december-2019-update.js
@@ -0,0 +1,7 @@
+import React from 'react';
+import MarkdownDocs from 'docs/src/modules/components/MarkdownDocs';
+import markdown from './december-2019-update.md';
+
+export default function Page() {
+ return ;
+}
diff --git a/docs/pages/blog/december-2019-update.md b/docs/pages/blog/december-2019-update.md
new file mode 100644
index 00000000000000..6f44cdf8a9375c
--- /dev/null
+++ b/docs/pages/blog/december-2019-update.md
@@ -0,0 +1,55 @@
+---
+description: Here are the most significant improvements in December.
+---
+
+# December 2019 Update
+
+**Olivier Tassinari**
+
+*January 7, 2020*
+
+Here are the most significant improvements in December:
+
+- 🚨 We have introduce a new [Alert](https://material-ui.com/components/alert/) component in the lab, thanks to **[@dimitropoulos](https://github.com/dimitropoulos)** ([#18702](https://github.com/mui-org/material-ui/pull/18702)). The component also supports composition with a [Snackbar](/components/snackbars/#customized-snackbars).
+
+ ![Alert](/static/blog/december-2019-update/alert.png)
+
+
Standard variant
+
+ ![Alert](/static/blog/december-2019-update/alert-filled.png)
+
+ Filled variant
+
+- 👤 We have added [stacking](/components/avatars/#grouped) support to the avatar.
+
+ ![Stacking](/static/blog/december-2019-update/stacking.png)
+
+- ↕️ We have added [vertical](/components/buttons/#group-orientation) support to the button group.
+
+ ![Vertical button](/static/blog/december-2019-update/vertical-buttons.png)
+
+- 🌎 We have almost doubled the number of supported [locales](/guides/localization/#localization) from 13 to 22, thanks to our awesome contributors. [Help us](https://github.com/mui-org/material-ui/blob/master/packages/material-ui/src/locale/index.js) double this number next month 🚀!
+
+But this summary is just scratching the surface. We have accepted 168 commits from 73 different contributors. We have changed 1,059 files with 13,468 additions and 8,584 deletions.
+
+## Our roadmap intent for January
+
+*(We'll do our best, no guarantee!)*
+
+- 💄 We will keep working on a new [pagination](https://github.com/mui-org/material-ui/pull/19049) component. You can already [preview it](https://deploy-preview-19049--material-ui.netlify.com/components/pagination/) (lead by [**@mbrookes**](https://github.com/mbrookes)).
+
+ ![Pagination](/static/blog/december-2019-update/pagination.png)
+
+- 📅 We will keep working on a major upgrade of the [date/time picker](https://github.com/mui-org/material-ui-pickers/issues/1293) components. We are working on desktop and range support (lead by [**@dmtrKovalenko**](https://github.com/dmtrKovalenko)).
+
+ ![Date picker](/static/blog/december-2019-update/date-picker.png)
+
+- 🧮 We will keep working on a new [data grid](https://github.com/mui-org/material-ui/pull/18872) component. You can already [preview it](https://deploy-preview-18872--material-ui.netlify.com/components/data-grid/) (lead by [**@oliviertassinari**](https://github.com/oliviertassinari)).
+
+ ![Data grid](/static/blog/december-2019-update/data-grid.png)
+
+❓ Please upvote our [GitHub issues](https://github.com/mui-org/material-ui/issues) if you want something specific. The number of 👍 helps us to prioritize.
+
+
+
+Material-UI is an MIT-licensed open source project. It’s an independent project with ongoing development helped by the support of these awesome [backers](/discover-more/backers/). Please join them ✨.
diff --git a/docs/src/pages.js b/docs/src/pages.js
index 238ffac9ad61ef..e99760c34a486a 100644
--- a/docs/src/pages.js
+++ b/docs/src/pages.js
@@ -215,6 +215,7 @@ const pages = [
{
pathname: '/blog',
children: [
+ { pathname: '/blog/december-2019-update' },
{ pathname: '/blog/november-2019-update' },
{ pathname: '/blog/october-2019-update' },
{ pathname: '/blog/september-2019-update' },
diff --git a/docs/static/blog/december-2019-update/alert-filled.png b/docs/static/blog/december-2019-update/alert-filled.png
new file mode 100644
index 00000000000000..ca2e15158502d3
Binary files /dev/null and b/docs/static/blog/december-2019-update/alert-filled.png differ
diff --git a/docs/static/blog/december-2019-update/alert.png b/docs/static/blog/december-2019-update/alert.png
new file mode 100644
index 00000000000000..c79ede46a12572
Binary files /dev/null and b/docs/static/blog/december-2019-update/alert.png differ
diff --git a/docs/static/blog/december-2019-update/data-grid.png b/docs/static/blog/december-2019-update/data-grid.png
new file mode 100644
index 00000000000000..85a163f98011f4
Binary files /dev/null and b/docs/static/blog/december-2019-update/data-grid.png differ
diff --git a/docs/static/blog/december-2019-update/date-picker.png b/docs/static/blog/december-2019-update/date-picker.png
new file mode 100644
index 00000000000000..c8fffc30618020
Binary files /dev/null and b/docs/static/blog/december-2019-update/date-picker.png differ
diff --git a/docs/static/blog/december-2019-update/pagination.png b/docs/static/blog/december-2019-update/pagination.png
new file mode 100644
index 00000000000000..20d853afc7874e
Binary files /dev/null and b/docs/static/blog/december-2019-update/pagination.png differ
diff --git a/docs/static/blog/december-2019-update/stacking.png b/docs/static/blog/december-2019-update/stacking.png
new file mode 100644
index 00000000000000..006b11453c7df2
Binary files /dev/null and b/docs/static/blog/december-2019-update/stacking.png differ
diff --git a/docs/static/blog/december-2019-update/vertical-buttons.png b/docs/static/blog/december-2019-update/vertical-buttons.png
new file mode 100644
index 00000000000000..141734d5802b86
Binary files /dev/null and b/docs/static/blog/december-2019-update/vertical-buttons.png differ