import { Box } from '@mui/material'; import React, { ReactNode } from 'react'; import { Helmet } from 'react-helmet'; import ToolHeader from './ToolHeader'; export default function ToolLayout({ children, title, description, image }: { title: string; description: string; image?: string; children: ReactNode; }) { return ( {`${title} - Omni Tools`} {children} ); }