feat: ToolBreadcrumb

This commit is contained in:
Ibrahima G. Coulibaly
2024-06-25 19:45:29 +01:00
parent 1e68c7105f
commit be3274ae82
5 changed files with 101 additions and 28 deletions

View File

@@ -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>