import React from 'react'; const ToolLayout = ({ title, description, children, icon: Icon }) => { return (
{/* Header */}
{Icon && }

{title}

{description && (

{description}

)}
{/* Tool Content */}
{children}
); }; export default ToolLayout;