mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-20 14:39:34 +02:00
chore: tools by category
This commit is contained in:
@@ -6,10 +6,12 @@ import ToolHeader from './ToolHeader';
|
||||
export default function ToolLayout({
|
||||
children,
|
||||
title,
|
||||
description
|
||||
description,
|
||||
image
|
||||
}: {
|
||||
title: string;
|
||||
description: string;
|
||||
image?: string;
|
||||
children: ReactNode;
|
||||
}) {
|
||||
return (
|
||||
@@ -23,7 +25,7 @@ export default function ToolLayout({
|
||||
<title>{`${title} - Omni Tools`}</title>
|
||||
</Helmet>
|
||||
<Box width={'85%'}>
|
||||
<ToolHeader title={title} description={description} />
|
||||
<ToolHeader title={title} description={description} image={image} />
|
||||
{children}
|
||||
</Box>
|
||||
</Box>
|
||||
|
Reference in New Issue
Block a user