diff --git a/public/img/posts/gsoc.webp b/public/img/posts/gsoc.webp
new file mode 100644
index 000000000000..a1848818af91
Binary files /dev/null and b/public/img/posts/gsoc.webp differ
diff --git a/public/img/posts/marketing-images/buffer-report.webp b/public/img/posts/marketing-images/buffer-report.webp
new file mode 100644
index 000000000000..779708eb01f8
Binary files /dev/null and b/public/img/posts/marketing-images/buffer-report.webp differ
diff --git a/public/img/posts/marketing-images/linkedIn-metrics-insights.webp b/public/img/posts/marketing-images/linkedIn-metrics-insights.webp
new file mode 100644
index 000000000000..ce5fe3262331
Binary files /dev/null and b/public/img/posts/marketing-images/linkedIn-metrics-insights.webp differ
diff --git a/public/img/posts/marketing-images/linkedin-performance-statistics.webp b/public/img/posts/marketing-images/linkedin-performance-statistics.webp
new file mode 100644
index 000000000000..99c1990594d8
Binary files /dev/null and b/public/img/posts/marketing-images/linkedin-performance-statistics.webp differ
diff --git a/public/img/posts/marketing-images/marketing-wg.webp b/public/img/posts/marketing-images/marketing-wg.webp
new file mode 100644
index 000000000000..441ca009a062
Binary files /dev/null and b/public/img/posts/marketing-images/marketing-wg.webp differ
diff --git a/public/img/posts/marketing-images/merchandise.webp b/public/img/posts/marketing-images/merchandise.webp
new file mode 100644
index 000000000000..ee8c87f99cad
Binary files /dev/null and b/public/img/posts/marketing-images/merchandise.webp differ
diff --git a/public/img/posts/marketing-images/store-report.webp b/public/img/posts/marketing-images/store-report.webp
new file mode 100644
index 000000000000..147f7981044f
Binary files /dev/null and b/public/img/posts/marketing-images/store-report.webp differ
diff --git a/public/img/posts/marketing-images/x-metrics-insights.webp b/public/img/posts/marketing-images/x-metrics-insights.webp
new file mode 100644
index 000000000000..7cf68fafdd62
Binary files /dev/null and b/public/img/posts/marketing-images/x-metrics-insights.webp differ
diff --git a/public/img/posts/marketing-images/x-performance-statistics.webp b/public/img/posts/marketing-images/x-performance-statistics.webp
new file mode 100644
index 000000000000..c7e5fbf9752b
Binary files /dev/null and b/public/img/posts/marketing-images/x-performance-statistics.webp differ
diff --git a/utils/getStatic.ts b/utils/getStatic.ts
index 56af2cf6b1ca..974ff691920f 100644
--- a/utils/getStatic.ts
+++ b/utils/getStatic.ts
@@ -29,7 +29,7 @@ export const getStaticPaths = () => ({
* @returns An object containing the internationalization props.
*/
export async function getI18nProps(ctx: any, ns = ['common']) {
- const locale = ctx?.params?.lang;
+ const locale = ctx?.params?.lang ? ctx.params.lang : 'en';
const props = {
...(await serverSideTranslations(locale, ns))
};