feat: JTR branding + Pink Pulse community partner integration

This commit is contained in:
Ryan Salazar
2026-06-26 21:12:17 -04:00
parent efbd54443d
commit 448035ad60
15 changed files with 488 additions and 10 deletions

47
src/lib/partners.ts Normal file
View File

@@ -0,0 +1,47 @@
/** Just Two Roommates network — partner properties (JTR only, not RMP). */
export const JTR = {
name: "Just Two Roommates",
url: "https://justtworoommates.com",
logo: "/partners/jtr-wordmark.svg",
} as const;
export const PINK_PULSE = {
name: "The Pink Pulse",
shortName: "Pink Pulse",
tagline: "LGBTQ+ news, events & 165+ cities",
url: "https://thepinkpulse.com",
logo: "/partners/pinkpulse-icon.svg",
links: [
{
label: "The Latest",
href: "https://thepinkpulse.com/the-latest",
description: "Queer news & stories",
},
{
label: "Events",
href: "https://thepinkpulse.com/events-calendar",
description: "This weekend near you",
},
{
label: "Directory",
href: "https://thepinkpulse.com/directory",
description: "Local LGBTQ+ businesses",
},
{
label: "Health",
href: "https://thepinkpulse.com/health-wellness",
description: "Testing, PrEP & wellness",
},
{
label: "Nightlife",
href: "https://thepinkpulse.com/nightlife",
description: "Bars, drag & going out",
},
{
label: "Groups",
href: "https://thepinkpulse.com/groups",
description: "Community meetups",
},
],
} as const;