{title}
+{description}
+
+
{faq.question}
{faq.answer}
diff --git a/next/components/dynamic-zone/features-and-capacity.tsx b/next/components/dynamic-zone/features-and-capacity.tsx new file mode 100644 index 00000000..6cae4f37 --- /dev/null +++ b/next/components/dynamic-zone/features-and-capacity.tsx @@ -0,0 +1,59 @@ +import Image from "next/image"; +import { Typography } from "../ui/typography"; +import { strapiImage } from "@/lib/strapi/strapiImage"; + +export interface FeaturesAndCapacityProps { + heading: string; + background_color: string; + features_items: FeaturesItem[]; +} + +export interface FeaturesItem { + title: string; + description: string; + image: { + url: string; + } | null; +} + +export function FeaturesAndCapacity({ background_color, features_items, heading }: FeaturesAndCapacityProps) { + return ( +{'0' + index}
+