feat: register stitch tool in shared constants and i18n

This commit is contained in:
Siddharth Kumar Sah
2026-04-07 21:49:46 +08:00
parent 625e16c7b6
commit fbbbe70a35
2 changed files with 9 additions and 0 deletions
+8
View File
@@ -276,6 +276,14 @@ export const TOOLS: Tool[] = [
icon: "LayoutGrid",
route: "/collage",
},
{
id: "stitch",
name: "Stitch",
description: "Join images side by side or top to bottom",
category: "layout",
icon: "Columns",
route: "/stitch",
},
{
id: "split",
name: "Image Splitting",
+1
View File
@@ -86,6 +86,7 @@ export const en = {
description: "Read QR codes and barcodes from images",
},
collage: { name: "Collage / Grid", description: "Combine images into a grid layout" },
stitch: { name: "Stitch", description: "Join images side by side or top to bottom" },
split: { name: "Image Splitting", description: "Split image into grid parts" },
border: { name: "Border & Frame", description: "Add borders, rounded corners, shadows" },
"svg-to-raster": {