Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/components/SponsorLogo.astro
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ const {
tier,
event_name,
logo_padding = false,
logo_max_width,
} = sponsor.data;

const logo = sponsorLogos[sponsor.id];
Expand All @@ -39,8 +40,8 @@ const slug = tier==="Partners"? `/community-partners#sponsor-${sponsorId}`
<Image
src={logo}
alt={`${title} Logo`}
class={`max-w-full ${logo_max_width ? `lg:max-w-[${logo_max_width}]` : ""}`}
style={{
minWidth: "140px",
maxHeight: "120px",
objectFit: "contain",
padding: logo_padding ? logo_padding : undefined,
Expand All @@ -51,8 +52,8 @@ const slug = tier==="Partners"? `/community-partners#sponsor-${sponsorId}`
<Image
src={logo}
alt={`${title} Logo`}
class={`max-w-full ${logo_max_width ? `lg:max-w-[${logo_max_width}]` : ""}`}
style={{
minWidth: "140px",
maxHeight: "120px",
objectFit: "contain",
padding: logo_padding ? logo_padding : undefined,
Expand Down
1 change: 1 addition & 0 deletions src/content/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,7 @@ const sponsors = defineCollection({
.optional(),
event_name: z.string().optional().nullable(),
logo_padding: z.string().optional(),
logo_max_width: z.string().optional(),
draft: z.boolean().optional().default(false),
jobs: z.array(reference("jobs")).optional().default([]),
}),
Expand Down
112 changes: 112 additions & 0 deletions src/content/sponsors/activecampaign/activecampaign.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions src/content/sponsors/activecampaign/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: ActiveCampaign
url: https://www.activecampaign.com/
location: "US"
industry: "Software & Marketing"
description:
ActiveCampaign is the AI-first autonomous marketing platform built to
transform how marketers, agencies, and entrepreneurs work. Use Active
Intelligence to power goal-aware automations and orchestrate AI agents to
uncover deep performance insights and deliver cross-channel campaigns without
the heavy lifting.

socials:
linkedin: https://www.linkedin.com/company/activecampaign/
twitter: https://x.com/ActiveCampaign
facebook: https://www.activecampaign.com/
instagram: https://www.instagram.com/activecampaign
youtube: https://www.youtube.com/@ActiveCampaign

tier: Gold

logo_max_width: 400px
---
Loading