Add bookmark button to tool page

This commit is contained in:
Yihao Wang
2025-07-14 14:01:54 +12:00
parent a50028e1fb
commit 03d49e384f
5 changed files with 43 additions and 19 deletions

View File

@@ -13,12 +13,14 @@ export default function ToolLayout({
title,
description,
icon,
type
type,
path
}: {
title: string;
description: string;
icon?: IconifyIcon | string;
type: string;
path: string;
children: ReactNode;
}) {
const otherCategoryTools =
@@ -49,6 +51,7 @@ export default function ToolLayout({
description={description}
icon={icon}
type={type}
path={path}
/>
{children}
<Separator backgroundColor="#5581b5" margin="50px" />