import { SiClaude, SiGithubcopilot, SiGooglegemini } from 'react-icons/si' import type { AITool, FavoriteModel, AIReview } from './types' export const aiTools: AITool[] = [ { name: "Claude Max 5x", icon: SiClaude, description: "My favorite model provider for general use and coding", status: "primary", usage: "/ai/claude", link: "https://claude.ai/" }, { name: "GitHub Copilot Pro", icon: SiGithubcopilot, description: "Random edits when I don't want to start a Claude session", status: "active", link: "https://github.com/features/copilot" }, { name: "Gemini Pro", icon: SiGooglegemini, description: "Chatting, asking questions, and image generation", status: "occasional", link: "https://gemini.google.com/" }, { name: "v0 Free", svg: v0, description: "Generating boilerplate UIs", status: "occasional", link: "https://v0.dev/" }, { name: "Qwen", svg: ( ), description: "My favorite open source LLM for chatting", status: "occasional", link: "https://chat.qwen.ai/" }, ] export const favoriteModels: FavoriteModel[] = [ { name: "Claude 4 Sonnet", provider: "Anthropic", review: "The perfect balance of capability, speed, and price. Perfect for development with React.", rating: 5 }, { name: "Claude 4.1 Opus", provider: "Anthropic", review: "Amazing planner, useful for Plan Mode in Claude Code. Useful in code generation too.", rating: 5 }, { name: "Qwen3-235B-A22B", provider: "Alibaba", review: "The OG thinking model. Amazing, funny, and smart for chats. Surprisingly good at coding too.", rating: 5 }, { name: "Gemini 2.5 Pro", provider: "Google", review: "Amazing for Deep Research and reasoning tasks. I hate it for coding.", rating: 4 }, { name: "gemma3 27B", provider: "Google", review: "My favorite for playing around with AI or creating a project. Easy to run locally and open weight!", rating: 4 }, ] export const aiReviews: AIReview[] = [ { tool: "Claude Code", rating: 5, pros: ["Flagship models", "High usage limits", "Exceptional Claude integration"], cons: ["Can be slow", "High investment cost to get value"], verdict: "Best overall for Claude lovers" }, { tool: "Cursor", rating: 4, pros: ["Works like magic", "Lots of model support", "Huge ecosystem and community"], cons: ["Expensive", "Hype around it is dying", "Unclear/manipulative pricing"], verdict: "Great all-rounder, slowly dying" }, { tool: "Trae", rating: 4, pros: ["Good UI/UX", "Very budget-friendly", "Fantastic premium usage limits"], cons: ["No thinking", "Occasional parsing issues"], verdict: "Essential for productivity" }, { tool: "GitHub Copilot", rating: 3, pros: ["Latest models", "Great autocomplete", "Budget-friendly subscription price"], cons: ["No thinking", "Low quality output", "Bad support for other IDEs"], verdict: "Good for casual use" }, ]