diff --git a/src/StaticPage.php b/src/StaticPage.php
index 794dd39fdd7a22672a736be50e6cf044f8ca0f13..bf0876ccf5ca2afd4a04b1282800d2426e621d10 100644
--- a/src/StaticPage.php
+++ b/src/StaticPage.php
@@ -22,7 +22,7 @@ readonly class StaticPage
             return 0;
         }
 
-        return $this->frontMatter->title <=> $other->frontMatter->title;
+        return mb_strtolower($this->frontMatter->title) <=> mb_strtolower($other->frontMatter->title);
     }
 
     public function getBasename(): string