import ContentLockup from "../ContentLockup"; import MiniCard from "../MiniCard"; import type { FeatureGridViewProps } from "./FeatureGrid.types"; function FeatureGridView({ title, subtitle, className = "", features, labelledBy, }: FeatureGridViewProps) { return (
{/* Feature Content Lockup */}
{/* MiniCard Grid */}
{features.map((feature, index) => ( ))}
); } export default FeatureGridView;