feat: add tool popularity and icons

This commit is contained in:
2026-08-24 09:16:29 +05:00
parent 68476c3b8c
commit 76f1770286
7 changed files with 189 additions and 0 deletions
+53
View File
@@ -0,0 +1,53 @@
export const TOOL_POPULARITY: Record<string, number> = {
'crop-png': 92,
'resize-png': 90,
'remove-background-png': 95,
'blur-png': 85,
'sharpen-png': 80,
'convert-png-to-jpg': 82,
'jpg-to-png': 78,
'rotate-png': 75,
'flip-png': 70,
'convert-png-to-webp': 68,
'webp-to-png': 62,
'grayscale-png': 60,
'adjust-brightness-contrast-png': 58,
'invert-colors-png': 52,
'remove-color-from-png': 65,
'change-png-opacity': 45,
'sepia-png': 40,
'change-png-hue': 38,
'add-padding-png': 42,
'add-border-png': 38,
'two-colors-png': 35,
'black-and-white-png': 42,
'posterize-png': 30,
'round-corners-png': 36,
'fit-on-background-png': 34,
'extract-channel-png': 24,
'swap-channels-png': 22,
'invert-alpha-png': 26,
'remove-alpha-channel-png': 30,
'set-alpha-channel-png': 24,
'extract-alpha-mask-png': 20,
'tile-png': 28,
'center-by-alpha-png': 26,
'png-info': 44,
'png-is-transparent': 18,
'png-is-grayscale': 14,
'png-orientation': 16,
'png-to-base64': 40,
'base64-to-png': 32,
'png-to-data-uri': 34,
'data-uri-to-png': 26,
'png-to-hex': 10,
'hex-to-png': 8,
'gif-to-png': 30,
'bmp-to-png': 18,
'ico-to-png': 20,
'png-to-bmp': 12,
'create-empty-png': 25,
'single-color-png': 20,
'random-noise-png': 12,
'linear-gradient-png': 22
};