Feature Grid (2-Col)
|
import { Section, Row, Column, Text } from "@react-email/components";
export const FeatureGrid = () => (
<Section>
<Row>
<Column style={{ padding: "0 10px" }}>
<Text style={{ fontWeight: "bold" }}>Fast Performance</Text>
<Text>Optimized for speed and efficiency across all devices.</Text>
</Column>
<Column style={{ padding: "0 10px" }}>
<Text style={{ fontWeight: "bold" }}>Secure by Default</Text>
<Text>Enterprise-grade security features built right in.</Text>
</Column>
</Row>
</Section>
);