import type { ReactNode } from "react"; interface IProps { title: string; children?: ReactNode; } const Feature = ({ title, children }: IProps) => (
{children}