diff --git a/src/pages/index.astro b/src/pages/index.astro
index 91f5f2f..18ae194 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -14,7 +14,7 @@ import { getProductsForCategoryId } from '../data/products';
Your one-stop shop for all your after-market Dasher supplies.
- {ALL_CATEGORIES.children.filter(categoryNode => getProductsForCategoryId(categoryNode.value.id).length > 0).map(categoryNode => (
+ {ALL_CATEGORIES.children.filter(categoryNode => getProductsForCategoryId(categoryNode.value.id).length > 0).sort((left, right) => left.value.category.localeCompare(right.value.category)).map(categoryNode => (