Sifa professional network frontend (Next.js, React, TailwindCSS) sifa.id/

feat(events): add Smoke Signal logo to RSVP CTA button (#199)

Embed the Smoke Signal campfire icon in the "RSVP on Smoke Signal" button on the ATmosphereConf event page for visual recognition.

authored by

Guido X Jansen and committed by
GitHub
508bfebf cc769404

+8 -1
public/assets/smoke-signal-logo.png

This is a binary file and will not be displayed.

+8 -1
src/app/(main)/events/[slug]/page.tsx
··· 241 241 href={event.smokesignalUrl} 242 242 target="_blank" 243 243 rel="noopener noreferrer" 244 - className="mt-3 inline-flex h-9 items-center justify-center rounded-md border border-border bg-background px-4 text-sm font-medium transition-colors hover:bg-accent hover:text-foreground" 244 + className="mt-3 inline-flex h-9 items-center justify-center gap-2 rounded-md border border-border bg-background px-4 text-sm font-medium transition-colors hover:bg-accent hover:text-foreground" 245 245 > 246 + <img 247 + src="/assets/smoke-signal-logo.png" 248 + alt="" 249 + width={20} 250 + height={20} 251 + className="rounded-sm" 252 + /> 246 253 RSVP on Smoke Signal 247 254 </a> 248 255 </div>