diff --git a/apps/sim/app/(landing)/components/content-author-page/content-author-page.tsx b/apps/sim/app/(landing)/components/content-author-page/content-author-page.tsx
index db9b21b2a99..a6b646653d5 100644
--- a/apps/sim/app/(landing)/components/content-author-page/content-author-page.tsx
+++ b/apps/sim/app/(landing)/components/content-author-page/content-author-page.tsx
@@ -73,6 +73,7 @@ export function ContentAuthorPage({
month: 'short',
day: 'numeric',
year: 'numeric',
+ timeZone: 'UTC',
})}
@@ -82,6 +83,7 @@ export function ContentAuthorPage({
month: 'short',
day: 'numeric',
year: 'numeric',
+ timeZone: 'UTC',
})}
diff --git a/apps/sim/app/(landing)/components/content-index-page/content-index-page.tsx b/apps/sim/app/(landing)/components/content-index-page/content-index-page.tsx
index 52f29a453c3..fee875358bb 100644
--- a/apps/sim/app/(landing)/components/content-index-page/content-index-page.tsx
+++ b/apps/sim/app/(landing)/components/content-index-page/content-index-page.tsx
@@ -84,7 +84,9 @@ export function ContentIndexPage({
{new Date(p.date).toLocaleDateString('en-US', {
month: 'short',
- year: '2-digit',
+ day: 'numeric',
+ year: 'numeric',
+ timeZone: 'UTC',
})}
@@ -113,6 +115,7 @@ export function ContentIndexPage({
month: 'short',
day: 'numeric',
year: 'numeric',
+ timeZone: 'UTC',
})}
@@ -122,6 +125,7 @@ export function ContentIndexPage({
month: 'short',
day: 'numeric',
year: 'numeric',
+ timeZone: 'UTC',
})}
diff --git a/apps/sim/app/(landing)/components/content-post-page/content-post-page.tsx b/apps/sim/app/(landing)/components/content-post-page/content-post-page.tsx
index fccff3158de..e6777a573c1 100644
--- a/apps/sim/app/(landing)/components/content-post-page/content-post-page.tsx
+++ b/apps/sim/app/(landing)/components/content-post-page/content-post-page.tsx
@@ -83,6 +83,7 @@ export function ContentPostPage({
month: 'short',
day: 'numeric',
year: 'numeric',
+ timeZone: 'UTC',
})}
@@ -152,7 +153,9 @@ export function ContentPostPage({
{new Date(p.date).toLocaleDateString('en-US', {
month: 'short',
- year: '2-digit',
+ day: 'numeric',
+ year: 'numeric',
+ timeZone: 'UTC',
})}