add ai pages, cc usage
This commit is contained in:
parent
2f5b86111c
commit
7a9f907661
11 changed files with 1204 additions and 1 deletions
24
app/ai/types.ts
Normal file
24
app/ai/types.ts
Normal file
|
@ -0,0 +1,24 @@
|
|||
export interface AITool {
|
||||
name: string;
|
||||
icon?: React.ElementType;
|
||||
svg?: React.ReactNode;
|
||||
description: string;
|
||||
status: 'primary' | 'active' | 'occasional' | string;
|
||||
link?: string;
|
||||
usage?: string;
|
||||
}
|
||||
|
||||
export interface FavoriteModel {
|
||||
name: string;
|
||||
provider: string;
|
||||
review: string;
|
||||
rating: number;
|
||||
}
|
||||
|
||||
export interface AIReview {
|
||||
tool: string;
|
||||
rating: number;
|
||||
pros: string[];
|
||||
cons: string[];
|
||||
verdict: string;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue