Blog
diff --git a/src/pages/blog/[...slug].astro b/src/pages/blog/[...slug].astro
index fd9d5cf..1134c28 100644
--- a/src/pages/blog/[...slug].astro
+++ b/src/pages/blog/[...slug].astro
@@ -19,10 +19,13 @@ interface Props {
const { entry } = Astro.props as Props;
const { Content } = await entry.render();
const components = { table: Table };
-const { title } = entry.data;
+const { title, description } = entry.data;
+
+const descriptionMeta =
+ description.length > 160 ? description.substring(0, 150) + '...' : description;
---
-
+
{title}
diff --git a/src/pages/index.astro b/src/pages/index.astro
index 1bf87ff..ac88d69 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -8,7 +8,9 @@ import index1 from '@/assets/images/index-1.png';
import index2 from '@/assets/images/index-2.png';
---
-
+
Deploy Your
diff --git a/src/pages/recipes.astro b/src/pages/recipes.astro
index 1603ed3..f6d9bc7 100644
--- a/src/pages/recipes.astro
+++ b/src/pages/recipes.astro
@@ -17,7 +17,9 @@ const recipes = await directus.request(
);
---
-
+