|
| 1 | +export const tools: Tool[] = [ |
| 2 | + { |
| 3 | + name: 'TypeScript', |
| 4 | + description: |
| 5 | + 'TypeScript extends JavaScript by adding types. By understanding JavaScript, TypeScript saves you time catching errors and providing fixes before you run code. Any browser, any OS, anywhere JavaScript runs. Entirely Open Source.', |
| 6 | + link: 'https://www.typescriptlang.org/', |
| 7 | + image: { |
| 8 | + src: '/typescript.svg', |
| 9 | + width: 48, |
| 10 | + height: 50, |
| 11 | + alt: 'TypeScript', |
| 12 | + }, |
| 13 | + }, |
| 14 | + { |
| 15 | + name: 'Material UI', |
| 16 | + description: |
| 17 | + 'React components for faster and easier web development. Build your own design system, or start with Material Design.', |
| 18 | + link: 'https://material-ui.com/', |
| 19 | + image: { src: '/material-ui.svg', width: 50, height: 50, alt: 'Material UI' }, |
| 20 | + }, |
| 21 | + { |
| 22 | + name: 'Jest', |
| 23 | + description: |
| 24 | + 'Jest is a delightful JavaScript Testing Framework with a focus on simplicity. It works with projects using: Babel, TypeScript, Node, React, Angular, Vue and more!', |
| 25 | + link: 'https://jestjs.io/', |
| 26 | + image: { |
| 27 | + src: '/jest.svg', |
| 28 | + width: 50, |
| 29 | + height: 50, |
| 30 | + alt: 'Jest', |
| 31 | + }, |
| 32 | + }, |
| 33 | + { |
| 34 | + name: 'Testing Library', |
| 35 | + description: 'Simple and complete testing utilities that encourage good testing practices', |
| 36 | + link: 'https://testing-library.com/', |
| 37 | + image: { |
| 38 | + src: '/testing-library.png', |
| 39 | + width: 50, |
| 40 | + height: 50, |
| 41 | + alt: 'Testing Library', |
| 42 | + }, |
| 43 | + }, |
| 44 | + { |
| 45 | + name: 'ESLint', |
| 46 | + description: `ESLint statically analyzes your code to quickly find problems. ESLint is built into most text editors and you can run ESLint as part of your continuous integration pipeline. Many problems ESLint finds can be automatically fixed. ESLint fixes are syntax-aware so you won't experience errors introduced by traditional find-and-replace algorithms. Preprocess code, use custom parsers, and write your own rules that work alongside ESLint's built-in rules. You can customize ESLint to work exactly the way you need it for your project.`, |
| 47 | + link: 'https://eslint.org/', |
| 48 | + image: { |
| 49 | + src: '/eslint.svg', |
| 50 | + width: 50, |
| 51 | + height: 50, |
| 52 | + alt: 'ESLint', |
| 53 | + }, |
| 54 | + }, |
| 55 | + { |
| 56 | + name: 'Prettier', |
| 57 | + description: |
| 58 | + 'An opinionated code formatter. Supports many languages. Integrates with most editors. Has few options', |
| 59 | + link: 'https://prettier.io/', |
| 60 | + image: { |
| 61 | + src: '/prettier.png', |
| 62 | + width: 50, |
| 63 | + height: 50, |
| 64 | + alt: 'Prettier', |
| 65 | + }, |
| 66 | + }, |
| 67 | +]; |
| 68 | + |
| 69 | +export interface Tool { |
| 70 | + name: string; |
| 71 | + description: string; |
| 72 | + link: string; |
| 73 | + image?: { |
| 74 | + alt: string; |
| 75 | + src: string; |
| 76 | + width: number; |
| 77 | + height: number; |
| 78 | + }; |
| 79 | +} |
0 commit comments