import type { Features } from "../../../content/features"; import { FadeIn } from "./FadeIn"; import { SectionHeader, SectionSubtext } from "./Headings"; import { FeatureBox } from "./FeatureBox"; export function FeaturesBento({ header, body, features, }: { header: string; body: string; features: Features; }) { return (
{header} {body}
{features.map((feature) => ( ))}
); }