-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapps.ts
More file actions
599 lines (589 loc) · 23.5 KB
/
apps.ts
File metadata and controls
599 lines (589 loc) · 23.5 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
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
// AI Assist Apps
import TayImage from "../assets/apps/tay.webp";
// Course Planning Apps
import PrincetonCoursesImage from "../assets/apps/princetoncourses.webp";
import TigerJunctionImage from "../assets/apps/tigerjunction.webp";
import TigerPathImage from "../assets/apps/tigerpath.webp";
import TigerSnatchImage from "../assets/apps/tigersnatch.webp";
// Games
import ClickerImage from "../assets/apps/clicker.webp";
import SpotImage from "../assets/apps/spot.webp";
import TigerTypeImage from "../assets/apps/type.webp";
// Campus Life Apps
import TigerLiftImage from "../assets/apps/lift.webp";
import NutriTigerImage from "../assets/apps/nutritiger.webp";
import TodayImage from "../assets/apps/today.webp";
import TigerMenusImage from "../assets/archive/tigermenus.webp";
// Room Draw Apps
import PrincetonRoomsImage from "../assets/apps/princetonrooms.webp";
import TigerDrawImage from "../assets/apps/tigerdraw.webp";
// Archive Apps
import Food4UImage from "../assets/archive/food4u.webp";
import GiglImage from "../assets/archive/gigl.webp";
import MealMatchImage from "../assets/archive/mealmatch.webp";
import RebookImage from "../assets/archive/rebook.webp";
import RecalImage from "../assets/archive/recal.webp";
import ResearchImage from "../assets/archive/research.webp";
import RoomsImage from "../assets/archive/rooms.webp";
import SpaceTigerImage from "../assets/archive/spacetiger.webp";
import TigerFitImage from "../assets/archive/tigerfit.webp";
import TigerJobsImage from "../assets/archive/tigerjobs.webp";
import TigerMapImage from "../assets/archive/tigermap.webp";
import TigerRetailImage from "../assets/archive/tigerretail.webp";
import TigerStudyImage from "../assets/archive/tigerstudy.webp";
import TigerThriftImage from "../assets/archive/tigerthrift.webp";
import TigerTicketsImage from "../assets/archive/tigertickets.webp";
import TigerToolsImage from "../assets/archive/tigertools.webp";
import type { AppProps } from "./types";
// All apps in a single flat array with categories
export const allApps: AppProps[] = [
// Featured apps first for better grid layout
{
title: "TigerJunction",
description:
"Plan your schedules with powerful advanced search features, customizable themes, and built-in ratings.",
note: "",
webLink: "https://junction.tigerapps.org",
repoLink: "https://github.com/TigerAppsOrg/tiger-junction",
screenshot: TigerJunctionImage,
alt: "Tiger Junction app screenshot",
contributors: [{ name: "Joshua Lau '26", url: "https://motoaki.dev/" }],
additionalContributors: [
{
startMsg: "Updates by",
contributors: [
{ name: "Angela Cai '27", url: "" },
{ name: "Helen Hui '28", url: "" },
{ name: "Sai Nallani '29", url: "" },
{ name: "Sophia You '29", url: "" },
{ name: "Ayush Jain '28", url: "" },
{ name: "Emily Zhou '27", url: "" },
{ name: "Keith Matanachai '26", url: "" },
{ name: "Myles Anderson '26", url: "" }
]
}
],
featured: true,
category: "Course Planning"
},
{
title: "Tay",
description:
"Your AI assistant that knows all academic, eating club, and event information in real time. Integrated with Princeton Courses.",
note: "",
webLink: "https://tay.tigerapps.org/",
repoLink: "https://github.com/leo-step/Today",
screenshot: TayImage,
alt: "Tay chatbot screenshot",
contributors: [
{ name: "Leo Stepanewk '25", url: "" },
{ name: "Aaliyah Sayed '26", url: "" },
{ name: "Ammaar Alam '27", url: "https://ammaaralam.com" },
{ name: "Shreyas Garimella '28", url: "" }
],
featured: true,
category: "Campus Life"
},
{
title: "TigerSpot",
description:
"The ultimate Princeton campus geography game — like GeoGuesser but for Princeton! Guess where mystery photos were taken.",
note: "",
webLink: "https://spot.tigerapps.org/",
repoLink: "https://github.com/TigerAppsOrg/TigerSpot",
screenshot: SpotImage,
alt: "Tiger Spot app screenshot",
contributors: [
{ name: "Claudia Lee '26", url: "" },
{ name: "Jessica Yan '26", url: "" },
{ name: "Frank Liu '26", url: "" },
{ name: "Ethan Do '26", url: "" },
{ name: "Winsice Ng '26", url: "" }
],
additionalContributors: [
{
startMsg: "Updates by",
contributors: [
{ name: "Joshua Lau '26", url: "https://motoaki.dev/" }
]
}
],
featured: true,
category: "Games"
},
// Course Planning
{
title: "PrincetonCourses",
description:
"Search through courses quickly to find the list of courses you wish to take.",
note: "",
webLink: "https://princetoncourses.com/",
repoLink: "https://github.com/PrincetonUSG/PrincetonCourses",
screenshot: PrincetonCoursesImage,
alt: "Princeton Courses app screenshot",
contributors: [
{ name: "Sebastian Hallum Clarke '19", url: "" },
{ name: "Caterina Golner '19", url: "" },
{ name: "Bensu Sicim '19", url: "" },
{ name: "Mel Shu '19", url: "" },
{ name: "Kara Bressler '19", url: "" }
],
category: "Course Planning"
},
{
title: "TigerSnatch",
description:
"Receive email and text notifications when spots open in full classes. Trade spots with other students.",
note: "",
webLink: "https://tigersnatch.com/?ref=tigerapps",
repoLink: "https://github.com/PrincetonUSG/tigersnatch",
screenshot: TigerSnatchImage,
alt: "Tiger Snatch app screenshot",
contributors: [
{ name: "Shannon Heh '23", url: "" },
{ name: "Nick Padmanabhan '23", url: "" },
{ name: "Byron Zhang '23", url: "" }
],
category: "Course Planning"
},
{
title: "TigerPath",
description:
"Plan out your four-year course schedule and track major/degree requirements.",
note: "",
webLink: "https://path.tigerapps.org/",
repoLink: "https://github.com/PrincetonUSG/TigerPath",
screenshot: TigerPathImage,
alt: "Tiger Path app screenshot",
contributors: [
{ name: "Richard Chu '18", url: "" },
{ name: "Barak Nehoran '18", url: "" },
{ name: "Daniel Leung '20", url: "" },
{ name: "Adeniji Ogunlana '19", url: "" }
],
category: "Course Planning"
},
// Games
{
title: "TigerType",
description:
"Battle in typing races against friends in real-time. Create private lobbies and compete on leaderboards!",
note: "",
webLink: "https://type.tigerapps.org/",
repoLink: "https://github.com/TigerAppsOrg/tigertype",
screenshot: TigerTypeImage,
alt: "Tiger Type app screenshot",
contributors: [
{ name: "Ammaar Alam '27", url: "https://ammaaralam.com" },
{ name: "William Guan '27", url: "" },
{ name: "Ryan Chen '27", url: "" }
],
category: "Games"
},
{
title: "PawPointClicker",
description:
"Cookie Clicker for Princeton! Earn 'paw points' by clicking the prox!",
note: "",
webLink: "https://pawpointclicker.vercel.app/",
repoLink: "https://github.com/TigerAppsOrg/PawPointClicker/",
screenshot: ClickerImage,
alt: "Tiger Clicker app screenshot",
contributors: [
{ name: "Kevin Liu '28", url: "https://www.kevin-liu.tech/" }
],
category: "Games"
},
// Campus Life
{
title: "TigerLift",
description:
"Connect with travel buddies and split rideshare costs effortlessly!",
note: "",
webLink: "https://lift.tigerapps.org/",
repoLink: "https://github.com/TigerAppsOrg/TigerLift",
screenshot: TigerLiftImage,
alt: "Tiger Lift app screenshot",
contributors: [
{ name: "Julia Ying '26", url: "" },
{ name: "Grace Kim '26", url: "" },
{ name: "Ritika Bhatnagar '26", url: "" },
{ name: "Aasha Jain '26", url: "" }
],
category: "Campus Life"
},
{
title: "Today",
description:
"Chrome extension that replaces your new tab with crucial daily Princeton info. Features live data and study mode!",
note: "",
webLink:
"https://chromewebstore.google.com/detail/today-princeton/iejdjhiphonjpgaobmpniifeipiomgee?hl=en",
repoLink: "https://github.com/leo-step/Today",
screenshot: TodayImage,
alt: "Today extension screenshot",
contributors: [
{ name: "Leo Stepanewk '25", url: "" },
{ name: "Aaliyah Sayed '26", url: "" },
{ name: "Oyu Enkhbold '26", url: "https://oyu-e.github.io/" },
{ name: "Shreyas Garimella '28", url: "" },
{ name: "Grace Tan '28", url: "" }
],
category: "Campus Life"
},
{
title: "NutriTiger",
description:
"Discover what your dining hall offers and track your nutrition effortlessly.",
note: "",
webLink: "https://nutritiger.tigerapps.org/",
repoLink: "https://github.com/TigerAppsOrg/nutritiger",
screenshot: NutriTigerImage,
alt: "Nutri Tiger app screenshot",
contributors: [
{ name: "Rishabh Jain '26", url: "" },
{ name: "Oyu Enkhbold '26", url: "https://oyu-e.github.io/" },
{ name: "Eric Kurkowski '26", url: "" },
{ name: "Jewel Merriman '26", url: "" },
{ name: "Stephanie Oh '26", url: "" }
],
category: "Campus Life"
},
{
title: "TigerMenus",
description:
"Compare menu options across all 6 dining halls on a single page!",
note: "",
webLink: "https://menus.tigerapps.org/",
repoLink: "https://github.com/axu2/tiger-menus",
screenshot: TigerMenusImage,
alt: "Tiger Menus app screenshot",
contributors: [
{ name: "Alex Xu '20", url: "" },
{ name: "William Li '20", url: "" },
{ name: "Yang Song '20", url: "" }
],
category: "Campus Life"
},
// Room Draw
{
title: "TigerDraw",
description:
"The one-stop-shop for room draw planning. See when past rooms were drawn and create wishlists.",
note: "",
webLink: "https://draw.tigerapps.org/",
repoLink: "https://github.com/PrincetonUSG/TigerDraw",
screenshot: TigerDrawImage,
alt: "Tiger Draw app screenshot",
contributors: [
{ name: "Christine Cho '22", url: "" },
{ name: "Grace Cuenca '22", url: "" },
{ name: "Frank Ge '22", url: "" },
{ name: "Hannah Huh '22", url: "" }
],
additionalContributors: [
{
startMsg: "Updates by",
contributors: [
{ name: "Leo Stepanewk '25", url: "" },
{ name: "Andy Zhang '26", url: "" },
{ name: "Ammaar Alam '27", url: "https://ammaaralam.com" }
]
}
],
category: "Room Draw"
},
{
title: "PrincetonRooms",
description:
"Analyze available rooms with seamless filtering and data visualization.",
note: "",
webLink: "https://rooms.tigerapps.org/",
repoLink: "https://github.com/TigerAppsOrg/princeton-rooms",
screenshot: PrincetonRoomsImage,
alt: "Princeton Rooms app screenshot",
contributors: [{ name: "Boaz Yoo '25", url: "" }],
category: "Room Draw"
}
];
// Vibrant Pixar-style category colors
export const categoryColors: Record<
string,
{ bg: string; text: string; border: string; accent: string }
> = {
"Course Planning": {
bg: "bg-pixar-blue/10",
text: "text-pixar-blue",
border: "border-pixar-blue",
accent: "#339AF0"
},
"Games": {
bg: "bg-pixar-orange/10",
text: "text-pixar-orange",
border: "border-pixar-orange",
accent: "#FFA94D"
},
"Campus Life": {
bg: "bg-pixar-green/10",
text: "text-pixar-green",
border: "border-pixar-green",
accent: "#51CF66"
},
"Room Draw": {
bg: "bg-pixar-pink/10",
text: "text-pixar-pink",
border: "border-pixar-pink",
accent: "#F783AC"
}
};
export const archiveApps = {
title: "Archive",
description: "Past TigerApps that are no longer supported.",
apps: [
{
title: "Food4U",
description:
"Locate and share free food easily with a visual campus map marking free food events, email notifications, and more.",
note: "",
webLink: "https://github.com/TigerAppsOrg/food4u",
repoLink: "https://github.com/TigerAppsOrg/food4u",
screenshot: Food4UImage,
alt: "Food 4 U app screenshot",
contributors: [
{ name: "Daphne Barretto '23", url: "" },
{ name: "Aaron Buck '23", url: "" },
{ name: "Ben Chan '23", url: "" }
]
},
{
title: "Gigl",
description:
"Unleash your skills and earn money by connecting with fellow students seeking your talents! Apply to gigs, set up your freelancer profile and wait for offers OR post a gig yourself if you are looking to hire someone.",
note: "",
webLink: "https://github.com/TigerAppsOrg/gigl",
repoLink: "https://github.com/TigerAppsOrg/gigl",
screenshot: GiglImage,
alt: "Gigl app screenshot",
contributors: [
{ name: "Taylan Aydin '25", url: "" },
{ name: "Andre Biehl '25", url: "" },
{ name: "Yagiz Devre '26", url: "" },
{ name: "Ibrahim Ahmed '25", url: "" }
]
},
{
title: "MealMatch",
description:
"Find new people to meet and eat with in dining halls who want to eat at the same time and place as you. Receive real-time text notifications upon finding a match along with your match's profile and contact information.",
note: "",
webLink: "https://github.com/TigerAppsOrg/MealMatch",
repoLink: "https://github.com/TigerAppsOrg/MealMatch",
screenshot: MealMatchImage,
alt: "Meal Match app screenshot",
contributors: [
{ name: "Adam Kelch '24", url: "" },
{ name: "Ameya Vaidya '24", url: "" },
{ name: "Jeremy Dapaah '24", url: "" },
{ name: "Rajiv Swamy '24", url: "" }
]
},
{
title: "ReBook",
description: "Textbook marketplace for Princeton students.",
note: "Replacement: TigerRetail",
webLink: "https://github.com/TigerAppsOrg/rebook",
repoLink: "https://github.com/TigerAppsOrg/rebook",
screenshot: RebookImage,
alt: "Re-Book app screenshot",
contributors: [
{ name: "Sophie Li '23", url: "" },
{ name: "Jayson Wu '23", url: "" },
{ name: "Connie Xu '23", url: "" }
]
},
{
title: "Recal",
description:
"Plan the perfect course schedule and automatically sync with your Google Calendar.",
note: "Replacement: TigerJunction",
webLink: "https://github.com/TigerAppsOrg/ReCal",
repoLink: "https://github.com/TigerAppsOrg/ReCal",
screenshot: RecalImage,
alt: "ReCal app screenshot",
contributors: [
{ name: "Naphat Sanguansin '16", url: "" },
{ name: "Dylan Xue '16", url: "" },
{ name: "Maxim Zaslavsky '17", url: "" }
]
},
{
title: "TigerResearch",
description:
"Search for available Princeton professors within your field of interest, for independent work, thesis, or other research.",
note: "",
webLink: "https://github.com/TigerAppsOrg/TigerResearch",
repoLink: "https://github.com/TigerAppsOrg/TigerResearch",
screenshot: ResearchImage,
alt: "Tiger Research app screenshot",
contributors: [
{ name: "Eric Ahn '24", url: "" },
{ name: "Vivek Kolli '24", url: "" },
{ name: "Alex Zhang '24", url: "" }
]
},
{
title: "TigerRooms",
description: "Search rooms, reviews, and floor plans.",
note: "Replacement: TigerDraw",
webLink: "https://github.com/TigerAppsOrg/rooms-app",
repoLink: "https://github.com/TigerAppsOrg/rooms-app",
screenshot: RoomsImage,
alt: "Tiger Rooms app screenshot",
contributors: [{ name: "Ben Parks '17", url: "" }]
},
{
title: "SpaceTiger",
description:
"Search for and review spots on campus, whether it be for studying, partying, rehearsing, or just hanging out.",
note: "",
webLink: "https://github.com/TigerAppsOrg/SpaceTiger",
repoLink: "https://github.com/TigerAppsOrg/SpaceTiger",
screenshot: SpaceTigerImage,
alt: "Space Tiger app screenshot",
contributors: [
{ name: "Tyler Benson '24", url: "" },
{ name: "Eva Vesely '24", url: "" },
{ name: "Giao Vu Dinh '24", url: "" },
{ name: "Chenhan Zhang '24", url: "" },
{ name: "Thanya Begum '23", url: "" }
]
},
{
title: "TigerFit",
description:
"Track workouts, visualize progress, and get recommendations for weights/repetitions based on your workout history.",
note: "",
webLink: "https://github.com/TigerAppsOrg/TigerFit",
repoLink: "https://github.com/TigerAppsOrg/TigerFit",
screenshot: TigerFitImage,
alt: "Tiger Fit app screenshot",
contributors: [
{ name: "Ian Murray '23", url: "" },
{ name: "Adam Gamba '23", url: "" },
{ name: "Kevin Castro '23", url: "" },
{ name: "Darren Zheng '23", url: "" }
]
},
{
title: "TigerJobs",
description:
"Leave a review and find what you need to land your next interview or job from peers.",
note: "",
webLink: "https://github.com/TigerAppsOrg/TigerJobs",
repoLink: "https://github.com/TigerAppsOrg/TigerJobs",
screenshot: TigerJobsImage,
alt: "Tiger Jobs app screenshot",
contributors: [
{ name: "Arnav Kumar '24", url: "" },
{ name: "Ambri Ma '24", url: "" }
]
},
{
title: "TigerMap",
description:
"A course exploration app that allows students to discover what classes to take next. Create and share course tracks with others.",
note: "",
webLink: "https://github.com/TigerAppsOrg/TigerMap",
repoLink: "https://github.com/TigerAppsOrg/TigerMap",
screenshot: TigerMapImage,
alt: "Tiger Map app screenshot",
contributors: [
{ name: "Leo Stepanewk '25", url: "" },
{ name: "Aaliyah Sayed '25", url: "" },
{ name: "Bill Ao '24", url: "" }
]
},
{
title: "TigerThrift",
description: "Sell clothing or shop fellow Tigers' closets.",
note: "Replacement: TigerRetail",
webLink: "https://github.com/TigerAppsOrg/TigerThrift",
repoLink: "https://github.com/TigerAppsOrg/TigerThrift",
screenshot: TigerThriftImage,
alt: "Tiger Thrift app screenshot",
contributors: [
{ name: "Katie Chou '23", url: "" },
{ name: "Katelyn Rodrigues '23", url: "" },
{ name: "Iroha Shirai '23", url: "" }
]
},
{
title: "TigerTickets",
description:
"Secondary marketplace to buy/re-sell/exchange tickets.",
note: "Replacement: TigerRetail",
webLink: "https://github.com/TigerAppsOrg/TigerTickets",
repoLink: "https://github.com/TigerAppsOrg/TigerTickets",
screenshot: TigerTicketsImage,
alt: "Tiger Tickets app screenshot",
contributors: [
{ name: "Jenny Sheng '22", url: "" },
{ name: "Joseph Chen '22", url: "" },
{ name: "Sunny Yoo '22", url: "" }
]
},
{
title: "TigerTools",
description:
"Find amenities using a map of campus and provide feedback on them.",
note: "",
webLink: "https://github.com/TigerAppsOrg/TigerTools",
repoLink: "https://github.com/TigerAppsOrg/TigerTools",
screenshot: TigerToolsImage,
alt: "Tiger Tools app screenshot",
contributors: [
{ name: "Indu Panigrahi '23", url: "" },
{ name: "Raymond Liu '23", url: "" },
{ name: "Adam Rebei '23", url: "" }
]
},
{
title: "TigerRetail",
description:
"Buy, sell, and request goods; direct message users in-site, connect with transportation buddies, find campus event tickets, and more.",
note: ".",
webLink: "https://github.com/PrincetonUSG/TigerReTail/",
repoLink: "https://github.com/PrincetonUSG/TigerReTail",
screenshot: TigerRetailImage,
alt: "Tiger Retail app screenshot",
contributors: [
{ name: "Albert Lin '23", url: "" },
{ name: "Katie McLaughlin '23", url: "" },
{ name: "Sara Schwartz '23", url: "" },
{ name: "Phoebe Lin '23", url: "" }
]
},
{
title: "TigerStudy",
description: "Get matched to study groups for any of your courses.",
note: "Inquiries should be directed to the McGraw Center.",
webLink: "https://study.tigerapps.org/",
repoLink: "https://github.com/tigerappsorg/tiger-study-2",
screenshot: TigerStudyImage,
alt: "Tiger Study app screenshot",
contributors: [
{ name: "Caroline di Vittorio '22", url: "" },
{ name: "Kasey McFadden '22", url: "" }
],
additionalContributors: [
{
startMsg: "Updates by",
contributors: [
{ name: "Joshua Lau '26", url: "https://motoaki.dev/" }
]
}
],
category: "Campus Life"
}
]
};