-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtree.txt
154 lines (153 loc) · 5.91 KB
/
tree.txt
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
src/
├── app
│ ├── actions
│ │ ├── auth.ts
│ │ ├── generate-ai-response.ts
│ │ ├── generate-suggestion.ts
│ │ └── preferences.ts
│ ├── api
│ │ ├── analyze-preferences
│ │ │ └── route.ts
│ │ ├── courses
│ │ │ └── published
│ │ │ ├── route.ts
│ │ │ └── search
│ │ │ └── route.ts
│ │ ├── save-preferences
│ │ │ └── route.ts
│ │ └── user
│ │ ├── courses
│ │ │ ├── [courseId]
│ │ │ │ ├── fork
│ │ │ │ │ └── route.ts
│ │ │ │ ├── fork-tree
│ │ │ │ │ └── route.ts
│ │ │ │ ├── messages
│ │ │ │ │ └── route.ts
│ │ │ │ ├── modules
│ │ │ │ │ └── [moduleId]
│ │ │ │ │ └── route.ts
│ │ │ │ ├── publish
│ │ │ │ │ └── route.ts
│ │ │ │ └── route.ts
│ │ │ └── route.ts
│ │ ├── generate-courses
│ │ │ └── route.ts
│ │ ├── preferences
│ │ │ └── route.ts
│ │ └── profile
│ │ └── route.ts
│ ├── favicon.ico
│ ├── fonts
│ │ ├── GeistMonoVF.woff
│ │ └── GeistVF.woff
│ ├── globals.css
│ ├── layout.tsx
│ ├── loading.tsx
│ ├── not-found.tsx
│ ├── (pages)
│ │ ├── (auth)
│ │ │ ├── sign-in
│ │ │ │ └── page.tsx
│ │ │ └── sign-up
│ │ │ └── page.tsx
│ │ └── (dashboard)
│ │ ├── course
│ │ │ └── [courseId]
│ │ │ ├── _components
│ │ │ │ ├── AISuggestionsPanel.tsx
│ │ │ │ ├── CourseChat.tsx
│ │ │ │ ├── courseClient.tsx
│ │ │ │ ├── CourseForkTree.tsx
│ │ │ │ ├── EditableSection.tsx
│ │ │ │ └── InteractiveElement.tsx
│ │ │ └── page.tsx
│ │ ├── dashboard
│ │ │ ├── _components
│ │ │ │ ├── CourseCard.tsx
│ │ │ │ ├── DashboardClient.tsx
│ │ │ │ └── GenerateCourseDialog.tsx
│ │ │ └── page.tsx
│ │ ├── layout.tsx
│ │ └── onboarding
│ │ ├── _components
│ │ │ └── SourcesSection.tsx
│ │ └── page.tsx
│ └── page.tsx
├── components
│ ├── auth
│ │ ├── IntertwiningArcs.tsx
│ │ └── SignOutButton.tsx
│ ├── global
│ │ ├── logo.tsx
│ │ └── ProfileDropdown.tsx
│ ├── providers
│ │ └── AppProviders.tsx
│ └── ui
│ ├── accordion.tsx
│ ├── alert-dialog.tsx
│ ├── alert.tsx
│ ├── aspect-ratio.tsx
│ ├── avatar.tsx
│ ├── badge.tsx
│ ├── breadcrumb.tsx
│ ├── button.tsx
│ ├── calendar.tsx
│ ├── card.tsx
│ ├── carousel.tsx
│ ├── chart.tsx
│ ├── checkbox.tsx
│ ├── collapsible.tsx
│ ├── command.tsx
│ ├── context-menu.tsx
│ ├── dialog.tsx
│ ├── drawer.tsx
│ ├── dropdown-menu.tsx
│ ├── form.tsx
│ ├── hover-card.tsx
│ ├── input-otp.tsx
│ ├── input.tsx
│ ├── label.tsx
│ ├── menubar.tsx
│ ├── navigation-menu.tsx
│ ├── pagination.tsx
│ ├── popover.tsx
│ ├── progress.tsx
│ ├── radio-group.tsx
│ ├── resizable.tsx
│ ├── scroll-area.tsx
│ ├── select.tsx
│ ├── separator.tsx
│ ├── sheet.tsx
│ ├── sidebar.tsx
│ ├── skeleton.tsx
│ ├── slider.tsx
│ ├── sonner.tsx
│ ├── switch.tsx
│ ├── table.tsx
│ ├── tabs.tsx
│ ├── textarea.tsx
│ ├── toaster.tsx
│ ├── toast.tsx
│ ├── toggle-group.tsx
│ ├── toggle.tsx
│ └── tooltip.tsx
├── helpers
│ └── LanguageDetector.ts
├── hooks
│ ├── use-community-courses.ts
│ ├── use-course-messages.ts
│ ├── use-debounce.ts
│ ├── use-mobile.tsx
│ ├── use-toast.ts
│ └── use-user-courses.ts
├── lib
│ ├── auth.ts
│ ├── fallbackRepos.ts
│ ├── prisma.ts
│ └── utils.ts
├── middleware.ts
└── types
├── course.ts
└── preferences.ts
43 directories, 109 files