diff --git a/src/tools/index.ts b/src/tools/index.ts index 290875c3..4bc036c1 100644 --- a/src/tools/index.ts +++ b/src/tools/index.ts @@ -100,9 +100,33 @@ export const toolsByCategory: ToolCategory[] = [ name: 'Crypto', components: [tokenGenerator, hashText, bcrypt, uuidGenerator, ulidGenerator, cypher, bip39, hmacGenerator, rsaKeyPairGenerator, passwordStrengthAnalyser, pdfSignatureChecker], }, + { + name: 'Web', + components: [ + dnsQuery, + sslCertificateParser, + urlEncoder, + htmlEntities, + urlParser, + deviceInformation, + basicAuthGenerator, + metaTagGenerator, + otpCodeGeneratorAndValidator, + mimeTypes, + jwtParser, + keycodeInfo, + slugifyString, + htmlWysiwygEditor, + userAgentParser, + httpStatusCodes, + jsonDiff, + safelinkDecoder, + ], + }, { name: 'Converter', components: [ + byteUnitConverter, dateTimeConverter, baseConverter, romanNumeralConverter, @@ -126,40 +150,12 @@ export const toolsByCategory: ToolCategory[] = [ ], }, { - name: 'Web', + name: 'Development', components: [ - dnsQuery, - sslCertificateParser, - byteUnitConverter, cssJsPrettifyMinify, htmlToMarkdown, jsonToTypes, curlToCode, - urlEncoder, - htmlEntities, - urlParser, - deviceInformation, - basicAuthGenerator, - metaTagGenerator, - otpCodeGeneratorAndValidator, - mimeTypes, - jwtParser, - keycodeInfo, - slugifyString, - htmlWysiwygEditor, - userAgentParser, - httpStatusCodes, - jsonDiff, - safelinkDecoder, - ], - }, - { - name: 'Images and videos', - components: [qrCodeGenerator, wifiQrCodeGenerator, svgPlaceholderGenerator, cameraRecorder], - }, - { - name: 'Development', - components: [ gitMemo, randomPortGenerator, crontabGenerator, @@ -176,6 +172,10 @@ export const toolsByCategory: ToolCategory[] = [ regexMemo, ], }, + { + name: 'Images and videos', + components: [qrCodeGenerator, wifiQrCodeGenerator, svgPlaceholderGenerator, cameraRecorder], + }, { name: 'Network', components: [ipv4SubnetCalculator, ipv4AddressConverter, ipv4RangeExpander, macAddressLookup, macAddressGenerator, ipv6UlaGenerator],