|
| 1 | +import { |
| 2 | + CompassIcon, |
| 3 | + ClockIcon, |
| 4 | + TerminalWindowIcon, |
| 5 | + PaintBrushIcon, |
| 6 | + GameControllerIcon, |
| 7 | + ColumnsIcon, |
| 8 | + SunglassesIcon, |
| 9 | + UserIcon, |
| 10 | + LightningIcon, |
| 11 | + SkullIcon, |
| 12 | + BookOpenIcon, |
| 13 | + BookBookmarkIcon, |
| 14 | + BooksIcon |
| 15 | +} from '@phosphor-icons/react'; |
| 16 | + |
| 17 | +export const ACHIEVEMENTS = [ |
| 18 | + { |
| 19 | + id: 'hello_world', |
| 20 | + title: 'Hello World', |
| 21 | + description: 'Welcome to Fezcodex.', |
| 22 | + icon: <CompassIcon size={32} weight="duotone" />, |
| 23 | + category: 'Exploration' |
| 24 | + }, |
| 25 | + { |
| 26 | + id: 'curious_soul', |
| 27 | + title: 'Curious Soul', |
| 28 | + description: 'Visited the About Me page to learn who is behind this.', |
| 29 | + icon: <UserIcon size={32} weight="duotone" />, |
| 30 | + category: 'Exploration' |
| 31 | + }, |
| 32 | + { |
| 33 | + id: 'the_hacker', |
| 34 | + title: 'The Hacker', |
| 35 | + description: 'Opened the Command Palette.', |
| 36 | + icon: <TerminalWindowIcon size={32} weight="duotone" />, |
| 37 | + category: 'Tools' |
| 38 | + }, |
| 39 | + { |
| 40 | + id: 'the_architect', |
| 41 | + title: 'The Architect', |
| 42 | + description: 'Enabled Blueprint or Hellenic mode.', |
| 43 | + icon: <ColumnsIcon size={32} weight="duotone" />, |
| 44 | + category: 'Visuals' |
| 45 | + }, |
| 46 | + { |
| 47 | + id: 'retro_futurist', |
| 48 | + title: 'Retro Futurist', |
| 49 | + description: 'Enabled Vaporwave or Cyberpunk mode.', |
| 50 | + icon: <SunglassesIcon size={32} weight="duotone" />, |
| 51 | + category: 'Visuals' |
| 52 | + }, |
| 53 | + { |
| 54 | + id: 'the_artist', |
| 55 | + title: 'The Artist', |
| 56 | + description: 'Enabled Sketchbook mode.', |
| 57 | + icon: <PaintBrushIcon size={32} weight="duotone" />, |
| 58 | + category: 'Visuals' |
| 59 | + }, |
| 60 | + { |
| 61 | + id: 'retro_gamer', |
| 62 | + title: 'Retro Gamer', |
| 63 | + description: 'Enabled Game Boy mode.', |
| 64 | + icon: <GameControllerIcon size={32} weight="duotone" />, |
| 65 | + category: 'Visuals' |
| 66 | + }, |
| 67 | + { |
| 68 | + id: 'glitch_hunter', |
| 69 | + title: 'Glitch Hunter', |
| 70 | + description: 'Discovered the Dystopian Glitch mode.', |
| 71 | + icon: <SkullIcon size={32} weight="duotone" />, |
| 72 | + category: 'Visuals' |
| 73 | + }, |
| 74 | + { |
| 75 | + id: 'power_user', |
| 76 | + title: 'Power User', |
| 77 | + description: 'Visited the Settings page.', |
| 78 | + icon: <LightningIcon size={32} weight="duotone" />, |
| 79 | + category: 'Tools' |
| 80 | + }, |
| 81 | + { |
| 82 | + id: 'novice_reader', |
| 83 | + title: 'Novice Reader', |
| 84 | + description: 'Read your first blog post.', |
| 85 | + icon: <BookOpenIcon size={32} weight="duotone" />, |
| 86 | + category: 'Content' |
| 87 | + }, |
| 88 | + { |
| 89 | + id: 'avid_reader', |
| 90 | + title: 'Avid Reader', |
| 91 | + description: 'Read 5 different blog posts.', |
| 92 | + icon: <BookBookmarkIcon size={32} weight="duotone" />, |
| 93 | + category: 'Content' |
| 94 | + }, |
| 95 | + { |
| 96 | + id: 'bookworm', |
| 97 | + title: 'Bookworm', |
| 98 | + description: 'Read 10 different blog posts. Impressive!', |
| 99 | + icon: <BooksIcon size={32} weight="duotone" />, |
| 100 | + category: 'Content' |
| 101 | + } |
| 102 | +]; |
0 commit comments