Skip to content

Commit b0ab524

Browse files
authored
add Interested in Sponsoring CTA button (#12)
1 parent 1316801 commit b0ab524

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

data/conference.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export const KEY_LINKS = {
5252
cfpLabel: 'SUBMIT YOUR PROPOSAL',
5353
cfpUrl: '',
5454
interestedInSponsoringLabel: 'INTERESTED IN SPONSORING',
55-
interestedInSponsoringUrl: '',
55+
interestedInSponsoringUrl: 'https://forms.gle/rLNiPdrSi3NZ772n9',
5656
sponsorshipProspectusLabel: 'SPONSORSHIP PROSPECTUS',
5757
sponsorshipProspectusUrl: '',
5858
konfHubEventPageLabel: 'KonfHub event page',

src/components/Hero.jsx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,19 @@ const Hero = () => {
8282
</Link>
8383
</div> */}
8484
<div className="flex flex-col sm:flex-row pt-4">
85+
<Link
86+
href={KEY_LINKS.interestedInSponsoringUrl}
87+
target="_blank"
88+
className="flex justify-center"
89+
rel="noopener noreferrer"
90+
>
91+
<button className="inline-flex mt-2 sm:mr-4 items-center bg-primary-600 px-5 py-3 font-medium hover:bg-primary-700 text-gray-50 border rounded-lg">
92+
<Icon name="VolunteerActivism" size={20} />
93+
<Span className="ml-2">
94+
{KEY_LINKS.interestedInSponsoringLabel}
95+
</Span>
96+
</button>
97+
</Link>
8598
<Link
8699
href={KEY_LINKS.volunteerFormUrl}
87100
target="_blank"

0 commit comments

Comments
 (0)