mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-20 22:49:33 +02:00
feat: ToolBreadcrumb
This commit is contained in:
@@ -7,11 +7,13 @@ export default function ToolLayout({
|
||||
children,
|
||||
title,
|
||||
description,
|
||||
image
|
||||
image,
|
||||
type
|
||||
}: {
|
||||
title: string;
|
||||
description: string;
|
||||
image?: string;
|
||||
type: string;
|
||||
children: ReactNode;
|
||||
}) {
|
||||
return (
|
||||
@@ -25,7 +27,12 @@ export default function ToolLayout({
|
||||
<title>{`${title} - Omni Tools`}</title>
|
||||
</Helmet>
|
||||
<Box width={'85%'}>
|
||||
<ToolHeader title={title} description={description} image={image} />
|
||||
<ToolHeader
|
||||
title={title}
|
||||
description={description}
|
||||
image={image}
|
||||
type={type}
|
||||
/>
|
||||
{children}
|
||||
</Box>
|
||||
</Box>
|
||||
|
Reference in New Issue
Block a user