MCPcopy
hub / github.com/triggerdotdev/trigger.dev / DiscordBanner

Function DiscordBanner

apps/webapp/app/components/Feedback.tsx:131–153  ·  view source on GitHub ↗
({ className }: { className?: string })

Source from the content-addressed store, hash-verified

129}
130
131function 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
155function GitHubDiscussionsBanner({ className }: { className?: string }) {
156 return (

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…