diff --git a/apps/frontend/src/pages/blog.astro b/apps/frontend/src/pages/blog.astro
index d5a405e..b5ebbff 100644
--- a/apps/frontend/src/pages/blog.astro
+++ b/apps/frontend/src/pages/blog.astro
@@ -34,7 +34,7 @@ try {
const LIST_QUERY = `
{
pages {
- list(orderBy: UPDATED, orderByDirection: DESC, tags: ["blog"]) {
+ list(orderBy: CREATED, orderByDirection: DESC, tags: ["blog"]) {
id
path
title
@@ -195,7 +195,7 @@ function getCleanPreview(content: string): string {
New Post
)}
- {timeAgo(page.updatedAt)}
+ {timeAgo(page.createdAt)}