@@ -304,27 +304,17 @@ function HelpAndFeedback() {
304
304
data-action = "status"
305
305
target = "_blank"
306
306
/>
307
-
308
- < TooltipProvider >
309
- < Tooltip >
310
- < TooltipTrigger >
311
- < SideMenuItem
312
- name = "Suggest a feature"
313
- icon = { LightBulbIcon }
314
- trailingIcon = { ArrowUpRightIcon }
315
- trailingIconClassName = "text-text-dimmed"
316
- inactiveIconColor = "text-sun-500"
317
- activeIconColor = "text-sun-500"
318
- to = "https://feedback.trigger.dev/"
319
- data-action = "suggest-a-feature"
320
- target = "_blank"
321
- />
322
- </ TooltipTrigger >
323
- < TooltipContent side = "right" >
324
- Have an idea for a new feature? Let us know!
325
- </ TooltipContent >
326
- </ Tooltip >
327
- </ TooltipProvider >
307
+ < SideMenuItem
308
+ name = "Suggest a feature"
309
+ icon = { LightBulbIcon }
310
+ trailingIcon = { ArrowUpRightIcon }
311
+ trailingIconClassName = "text-text-dimmed"
312
+ inactiveIconColor = "text-sun-500"
313
+ activeIconColor = "text-sun-500"
314
+ to = "https://feedback.trigger.dev/"
315
+ data-action = "suggest-a-feature"
316
+ target = "_blank"
317
+ />
328
318
< SideMenuItem
329
319
name = "Changelog"
330
320
icon = "star"
@@ -338,107 +328,80 @@ function HelpAndFeedback() {
338
328
/>
339
329
</ div >
340
330
< div className = "flex flex-col gap-1 p-1" >
341
- < Paragraph className = "pb-1 pl-1.5 pt-1.5 text-2sm " > Get in touch</ Paragraph >
331
+ < Paragraph className = "pb-1 pl-1.5 pt-1.5 text-xs " > Get in touch</ Paragraph >
342
332
{ currentPlan ?. v3Subscription ?. plan ?. limits . support === "slack" && (
343
- < TooltipProvider >
344
- < Tooltip >
345
- < TooltipTrigger >
346
- < Dialog >
347
- < DialogTrigger asChild >
348
- < Button
349
- variant = "small-menu-item"
350
- LeadingIcon = { SlackIcon }
351
- data-action = "join-our-slack"
352
- fullWidth
353
- textAlignLeft
354
- >
355
- < div className = "flex w-full items-center justify-between" >
356
- < span className = "text-text-bright" > Join our Slack…</ span >
357
- < MenuCount count = "PRO" />
358
- </ div >
359
- </ Button >
360
- </ DialogTrigger >
361
- < DialogContent >
362
- < DialogHeader > Join our Slack</ DialogHeader >
363
- < div className = "mt-2 flex flex-col gap-4" >
364
- < div className = "flex items-center gap-4" >
365
- < Icon icon = { SlackIcon } className = "h-10 w-10 min-w-[2.5rem]" />
366
- < Paragraph variant = "base/bright" >
367
- As a subscriber, you have access to a dedicated Slack channel for
368
- 1-to-1 support with the Trigger.dev team.
369
- </ Paragraph >
370
- </ div >
371
- < hr className = "border-charcoal-800" />
372
- < div >
373
- < StepNumber stepNumber = "1" title = "Email us" />
374
- < StepContentContainer >
375
- < Paragraph >
376
- Send us an email to this address from your Trigger.dev account email
377
- address:
378
- < ClipboardField
379
- variant = "secondary/medium"
380
- value = "priority-support@trigger.dev"
381
- className = "my-2"
382
- />
383
- </ Paragraph >
384
- </ StepContentContainer >
385
- < StepNumber stepNumber = "2" title = "Look out for an invite from Slack" />
386
- < StepContentContainer >
387
- < Paragraph >
388
- As soon as we can, we'll setup a Slack Connect channel and say
389
- hello!
390
- </ Paragraph >
391
- </ StepContentContainer >
392
- </ div >
393
- </ div >
394
- </ DialogContent >
395
- </ Dialog >
396
- </ TooltipTrigger >
397
- < TooltipContent side = "right" >
398
- Connect with us on Slack for priority support.
399
- </ TooltipContent >
400
- </ Tooltip >
401
- </ TooltipProvider >
333
+ < div >
334
+ < Dialog >
335
+ < DialogTrigger asChild >
336
+ < Button
337
+ variant = "small-menu-item"
338
+ LeadingIcon = { SlackIcon }
339
+ data-action = "join-our-slack"
340
+ fullWidth
341
+ textAlignLeft
342
+ >
343
+ < div className = "flex w-full items-center justify-between" >
344
+ < span className = "text-text-bright" > Join our Slack…</ span >
345
+ < MenuCount count = "PRO" />
346
+ </ div >
347
+ </ Button >
348
+ </ DialogTrigger >
349
+ < DialogContent >
350
+ < DialogHeader > Join our Slack</ DialogHeader >
351
+ < div className = "mt-2 flex flex-col gap-4" >
352
+ < div className = "flex items-center gap-4" >
353
+ < Icon icon = { SlackIcon } className = "h-10 w-10 min-w-[2.5rem]" />
354
+ < Paragraph variant = "base/bright" >
355
+ As a subscriber, you have access to a dedicated Slack channel for 1-to-1
356
+ support with the Trigger.dev team.
357
+ </ Paragraph >
358
+ </ div >
359
+ < hr className = "border-charcoal-800" />
360
+ < div >
361
+ < StepNumber stepNumber = "1" title = "Email us" />
362
+ < StepContentContainer >
363
+ < Paragraph >
364
+ Send us an email to this address from your Trigger.dev account email
365
+ address:
366
+ < ClipboardField
367
+ variant = "secondary/medium"
368
+ value = "priority-support@trigger.dev"
369
+ className = "my-2"
370
+ />
371
+ </ Paragraph >
372
+ </ StepContentContainer >
373
+ < StepNumber stepNumber = "2" title = "Look out for an invite from Slack" />
374
+ < StepContentContainer >
375
+ < Paragraph >
376
+ As soon as we can, we'll setup a Slack Connect channel and say hello!
377
+ </ Paragraph >
378
+ </ StepContentContainer >
379
+ </ div >
380
+ </ div >
381
+ </ DialogContent >
382
+ </ Dialog >
383
+ </ div >
402
384
) }
403
- < TooltipProvider >
404
- < Tooltip >
405
- < TooltipTrigger >
406
- < SideMenuItem
407
- name = "Join our Discord"
408
- icon = { DiscordIcon }
409
- trailingIcon = { ArrowUpRightIcon }
410
- trailingIconClassName = "text-text-dimmed"
411
- to = "https://trigger.dev/discord"
412
- data-action = "join our discord"
413
- target = "_blank"
414
- />
415
- </ TooltipTrigger >
416
- < TooltipContent side = "right" >
417
- The quickest way to get answers from the Trigger.dev community.
418
- </ TooltipContent >
419
- </ Tooltip >
420
- </ TooltipProvider >
421
-
422
- < TooltipProvider >
423
- < Tooltip >
424
- < TooltipTrigger >
425
- < SideMenuItem
426
- name = "Book a 15 min call"
427
- icon = { CalendarDaysIcon }
428
- trailingIcon = { ArrowUpRightIcon }
429
- trailingIconClassName = "text-text-dimmed"
430
- inactiveIconColor = "text-rose-500"
431
- activeIconColor = "text-rose-500"
432
- to = "https://cal.com/team/triggerdotdev/founders-call"
433
- data-action = "book-a-call"
434
- target = "_blank"
435
- />
436
- </ TooltipTrigger >
437
- < TooltipContent side = "right" >
438
- Have a question or want to chat? Book a time to talk with us.
439
- </ TooltipContent >
440
- </ Tooltip >
441
- </ TooltipProvider >
385
+ < SideMenuItem
386
+ name = "Join our Discord"
387
+ icon = { DiscordIcon }
388
+ trailingIcon = { ArrowUpRightIcon }
389
+ trailingIconClassName = "text-text-dimmed"
390
+ to = "https://trigger.dev/discord"
391
+ data-action = "join our discord"
392
+ target = "_blank"
393
+ />
394
+ < SideMenuItem
395
+ name = "Book a 15 min call"
396
+ icon = { CalendarDaysIcon }
397
+ trailingIcon = { ArrowUpRightIcon }
398
+ trailingIconClassName = "text-text-dimmed"
399
+ inactiveIconColor = "text-rose-500"
400
+ activeIconColor = "text-rose-500"
401
+ to = "https://cal.com/team/triggerdotdev/founders-call"
402
+ data-action = "book-a-call"
403
+ target = "_blank"
404
+ />
442
405
< Feedback
443
406
button = {
444
407
< Button
0 commit comments