-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtree.txt
More file actions
69 lines (68 loc) · 2.31 KB
/
tree.txt
File metadata and controls
69 lines (68 loc) · 2.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
.
├── CLAUDE.md
├── README.md
├── TODO
├── components.json
├── next-env.d.ts
├── next.config.js
├── package-lock.json
├── package.json
├── postcss.config.js
├── prettier.config.js
├── public
│ ├── favicon.ico
│ ├── loading_logo 2.svg
│ └── loading_logo.svg
├── src
│ ├── app
│ │ ├── layout.tsx
│ │ └── page.tsx
│ ├── components
│ │ ├── FilterSelect.tsx
│ │ ├── Filters
│ │ │ ├── FilterChipsInput.tsx
│ │ │ └── RotatingPlaceholder.tsx
│ │ ├── ReferenceQuote.tsx
│ │ ├── ReferenceSearchRedesigned.tsx
│ │ ├── RotatingPlaceholder.tsx
│ │ ├── reference-search.tsx
│ │ ├── theme-provider.tsx
│ │ └── ui
│ │ ├── AnimatedLoadingMessage.tsx
│ │ ├── LoadingSpinner.tsx
│ │ ├── LoadingState.tsx
│ │ ├── badge.tsx
│ │ ├── button.tsx
│ │ ├── card.tsx
│ │ ├── command.tsx
│ │ ├── dialog.tsx
│ │ ├── hover-card.tsx
│ │ ├── label.tsx
│ │ ├── popover.tsx
│ │ ├── select.tsx
│ │ ├── switch.tsx
│ │ ├── textarea.tsx
│ │ └── tooltip.tsx
│ ├── constants
│ │ ├── abbreviations.ts
│ │ ├── entity_list.ts
│ │ ├── example-queries.ts
│ │ └── filterData.ts
│ ├── env.js
│ ├── hooks
│ │ └── useFilters.tsx
│ ├── lib
│ │ ├── actions.ts
│ │ ├── ai-config.ts
│ │ ├── ai.ts
│ │ ├── data.ts
│ │ ├── interpreter.ts
│ │ ├── mock-data.ts
│ │ ├── types.ts
│ │ └── utils.ts
│ └── styles
│ └── globals.css
├── tailwind.config.ts
├── tree.txt
└── tsconfig.json
11 directories, 56 files