+
+ {photo
+ ? render_image(photo, {
+ sizesAttr: "200px",
+
+ container: {
+ width: 200,
+ height: 200,
+ objectFit: "cover",
+ },
+ alt: title || "",
+ })
+ : ""}
+
+ {title ?
{insert_nbsp(title)}
: ""}
+ {description ?
{render_markdown(language, description)}
: ""}
+
+ {sections.map((section) => (
+ /* HTML */
+ {section.name}
+
+ {section.links.map((link) => (
+ - {button({ ...link, centered: true })}
+ ))}
+
+
+ ))}
+
+
+ );
+ }
+}