({ className }: { className?: string })
| 129 | } |
| 130 | |
| 131 | function DiscordBanner({ className }: { className?: string }) { |
| 132 | return ( |
| 133 | <a |
| 134 | href="https://trigger.dev/discord" |
| 135 | target="_blank" |
| 136 | className={cn( |
| 137 | "group mb-4 flex w-full items-center justify-between rounded-md border border-charcoal-600 p-4 transition hover:border-text-link", |
| 138 | className |
| 139 | )} |
| 140 | > |
| 141 | <div className="flex flex-col gap-y-2"> |
| 142 | <DiscordIcon className="h-8 w-8" /> |
| 143 | <Header1 className="text-2xl font-semibold text-text-bright transition group-hover:text-white"> |
| 144 | Join our Discord community |
| 145 | </Header1> |
| 146 | <Paragraph variant="small" className="mb-4"> |
| 147 | Get help or answer questions from the Trigger.dev community. |
| 148 | </Paragraph> |
| 149 | </div> |
| 150 | <ChevronRightIcon className="size-5 text-charcoal-500 transition group-hover:translate-x-1 group-hover:text-text-link" /> |
| 151 | </a> |
| 152 | ); |
| 153 | } |
| 154 | |
| 155 | function GitHubDiscussionsBanner({ className }: { className?: string }) { |
| 156 | return ( |
nothing calls this directly
no test coverage detected
searching dependent graphs…