import {
SiClaude,
SiGithubcopilot,
SiGooglegemini,
SiPerplexity,
SiOpenai
} 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/",
price: 100
},
{
name: "ChatGPT Business",
icon: SiOpenai,
description: "Feature-rich and budget-friendly (for now)",
status: "active",
link: "https://chatgpt.com/",
price: 60
},
{
name: "GLM Coding Lite",
svg: (
/* Icon by lobe-icons: https://github.com/lobehub/lobe-icons */
),
description: "Cheap, Claude-like model with a slow API",
status: "active",
link: "https://z.ai/",
price: 3
},
{
name: "Gemini Pro",
icon: SiGooglegemini,
description: "Chatting, asking questions, and image generation",
status: "occasional",
link: "https://gemini.google.com/",
price: 20,
discountedPrice: 0
},
{
name: "Qwen Chat",
svg: (
),
description: "My favorite open source LLM for chatting",
status: "occasional",
link: "https://chat.qwen.ai/",
price: 0
},
{
name: "Perplexity Pro",
icon: SiPerplexity,
description: "Reliable for more in-depth searching",
status: "occasional",
link: "https://perplexity.ai/",
price: 20,
discountedPrice: 0
},
{
name: "OpenCode",
svg: (
),
description: "My favorite FOSS AI coding assistant",
status: "occasional",
link: "https://opencode.ai/",
price: 0
},
{
name: "GitHub Copilot Pro",
icon: SiGithubcopilot,
description: "Random edits when I don't want to start a Claude session",
status: "occasional",
link: "https://github.com/features/copilot",
price: 10,
discountedPrice: 0
},
{
name: "v0 Free",
svg: ,
description: "Generating boilerplate UIs",
status: "occasional",
link: "https://v0.dev/",
price: 0
},
]
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, albeit at a higher cost.",
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: "GPT-5",
provider: "OpenAI",
review: "A model I am still testing with. Seems to be good with coding and following instructions so far, but not with the same flair as Claude.",
rating: 4
},
{
name: "Qwen3-Max-Preview",
provider: "Alibaba",
review: "A new personality for Qwen3 at a larger size, amazing for use in chats. I'm not so happy that it's closed source (for now).",
rating: 4
},
{
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: ["API interface be slow at times", "High investment cost to get full 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: "Budget-friendly productivity boost"
},
{
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"
},
]