11import React from 'react' ;
22import { Link } from 'react-router-dom' ;
3- import { ArrowLeftIcon } from '@phosphor-icons/react' ;
3+ import { ArrowLeftIcon , ListNumbers , Sparkle , TextT , TextAa , Code , Link as LinkIcon , Keyboard , Fingerprint , Key , Palette , Ruler , DiceSix } from '@phosphor-icons/react' ;
44import AppCard from '../components/AppCard' ;
55import usePageTitle from '../utils/usePageTitle' ;
66
@@ -9,56 +9,73 @@ const apps = [
99 to : '/apps/tournament-bracket' ,
1010 title : 'Tournament Bracket' ,
1111 description : 'Create and manage tournament brackets.' ,
12+ icon : ListNumbers ,
13+ } ,
14+ {
15+ to : '/apps/fantasy-name-generator' ,
16+ title : 'Fantasy Name Generator' ,
17+ description : 'Generate fantasy names for characters, places, and items.' ,
18+ icon : Sparkle ,
19+ } ,
20+ {
21+ to : '/apps/dice-roller' ,
22+ title : 'Dice Roller' ,
23+ description : 'Roll various types of dice for your games and adventures.' ,
24+ icon : DiceSix ,
1225 } ,
1326 {
1427 to : '/apps/word-counter' ,
1528 title : 'Word Counter' ,
1629 description : 'Count words, characters, lines and paragraphs in a text.' ,
30+ icon : TextT ,
1731 } ,
1832 {
1933 to : '/apps/case-converter' ,
2034 title : 'Case Converter' ,
2135 description : 'Convert text to different cases (e.g., uppercase, lowercase, camelCase).' ,
36+ icon : TextAa ,
2237 } ,
2338 {
2439 to : '/apps/base64-converter' ,
2540 title : 'Base64 Converter' ,
2641 description : 'Encode and decode text to and from Base64 format.' ,
42+ icon : Code ,
2743 } ,
2844 {
2945 to : '/apps/url-converter' ,
3046 title : 'URL Encoder/Decoder' ,
3147 description : 'Encode and decode URL strings.' ,
48+ icon : LinkIcon ,
3249 } ,
3350 {
3451 to : '/apps/ascii-converter' ,
3552 title : 'Text to ASCII Converter' ,
3653 description : 'Convert text to ASCII codes and vice-versa.' ,
54+ icon : Keyboard ,
3755 } ,
3856 {
3957 to : '/apps/hash-generator' ,
4058 title : 'Hash Generator' ,
4159 description : 'Generate SHA1, SHA256, and SHA512 hashes from text.' ,
60+ icon : Fingerprint ,
4261 } ,
4362 {
4463 to : '/apps/uuid-generator' ,
4564 title : 'UUID Generator' ,
4665 description : 'Generate UUID v4.' ,
66+ icon : Key ,
4767 } ,
4868 {
4969 to : '/apps/color-palette-generator' ,
5070 title : 'Color Palette Generator' ,
5171 description : 'Generate random color palettes.' ,
72+ icon : Palette ,
5273 } ,
5374 {
5475 to : '/apps/css-unit-converter' ,
5576 title : 'CSS Unit Converter' ,
5677 description : 'Convert between px, em, rem, vw, vh, and % units.' ,
57- } ,
58- {
59- to : '/apps/fantasy-name-generator' ,
60- title : 'Fantasy Name Generator' ,
61- description : 'Generate fantasy names for characters, places, and items.' ,
78+ icon : Ruler ,
6279 } ,
6380] ;
6481
0 commit comments