|
1 | 1 | import { ESLintReact } from "#/components/ESLintReact"; |
2 | 2 | import { Card, Cards } from "fumadocs-ui/components/card"; |
3 | | -import { Gauge, SearchCheck, Sliders, Zap } from "lucide-react"; |
| 3 | +import { Eye, Shield, Sliders, Zap } from "lucide-react"; |
4 | 4 | import { Link } from "next-view-transitions"; |
5 | 5 |
|
6 | 6 | const features = [ |
7 | | - ["Modern", "First-class support for TypeScript, React 19, and more.", Zap], |
8 | | - ["Flexible", "Increased flexibility with more granular severity control.", Sliders], |
9 | | - ["Performant", "Built with performance in mind, optimized for large codebases.", Gauge], |
10 | | - ["Comprehensive", "Identifies problems that other tools might miss.", SearchCheck], |
| 7 | + [ |
| 8 | + "Performant", |
| 9 | + "Built with performance in mind, optimized for large codebases.", |
| 10 | + Zap, |
| 11 | + ], |
| 12 | + [ |
| 13 | + "Future-proof", |
| 14 | + "Forward-looking architecture that anticipates future React features.", |
| 15 | + Shield, |
| 16 | + ], |
| 17 | + [ |
| 18 | + "Precision Control", |
| 19 | + "Fully customizable rule severity levels, allowing you to enforce or relax rules as needed.", |
| 20 | + Sliders, |
| 21 | + ], |
| 22 | + [ |
| 23 | + "Context-aware Linting", |
| 24 | + "Rules that understand the context of your code and project configuration, providing more accurate linting results.", |
| 25 | + Eye, |
| 26 | + ], |
11 | 27 | ] as const; |
12 | 28 |
|
13 | 29 | export default function HomePage() { |
|
0 commit comments