diff --git a/src/pages/services/[slug].astro b/src/pages/services/[slug].astro index 1cbcbca..c703f5f 100644 --- a/src/pages/services/[slug].astro +++ b/src/pages/services/[slug].astro @@ -256,7 +256,7 @@ const featureList = data.features || data.services || [];
{data.services.map((s: any, idx: number) => ( -
+
0{idx + 1}
@@ -264,7 +264,7 @@ const featureList = data.features || data.services || [];

{s.title}

    - {s.bullets.map((b: string) =>
  • {b}
  • )} + {(s.bullets || s.items || []).map((b: string) =>
  • {b}
  • )}