diff --git a/apps/website/src/components/MenuItem.astro b/apps/website/src/components/MenuItem.astro
index 91dccdea..f51ababa 100644
--- a/apps/website/src/components/MenuItem.astro
+++ b/apps/website/src/components/MenuItem.astro
@@ -1,3 +1,5 @@
-
+
diff --git a/apps/website/src/components/navigation.astro b/apps/website/src/components/navigation.astro
index 6ed4e9f7..816299a3 100644
--- a/apps/website/src/components/navigation.astro
+++ b/apps/website/src/components/navigation.astro
@@ -10,6 +10,21 @@ const optimizedLogo = await getImage({
height: 51,
format: "webp",
});
+
+const caseStudies = [
+ {
+ title: "Refactoring Legacy UI",
+ href: "/blog/how-we-rebuilt-a-legacy-ui-with-zero-downtime",
+ },
+ {
+ title: "Implementing billing system",
+ href: "/blog/using-lago-to-create-a-flexible-billing-system",
+ },
+ {
+ title: "Empowering Frontend Migration",
+ href: "/blog/migrating-an-enterprise-app-from-angularjs-to-react",
+ },
+];
---