in src/components/Sections/JoinCommunity.tsx [7:23]
export function JoinCommunity() {
return (<div className="flex align-self-center justify-between xl:relative right-2
my-[72px] rounded-[20px] bg-primary-200 px-5 py-[36px] font-inter xl:mx-auto xl:w-[72vw] xl:max-w-[1300px]
sm:w-[87vw] sm:my-6 sm:p-4 mobile:my-4 mobile:p-3 mobile:mt-[80px] sm:mt-[180px]">
<div className="w-[600px] pr-3 sm:pr-[0] sm:w-auto">
<div className="text-heading1 mb-3 text-primary-800 font-semibold
sm:text-heading2">Join the Community</div>
<div className="text-label18 mb-4 text-neutral-500
sm:text-label16 sm:mb-3">Join our community to stay up to date with the latest news, ask and answer questions, make contributions, and connect with fellow community members!</div>
<div className="text-label16 space-y-[8px] flex flex-col">
<InlineLink link="https://join.slack.com/t/devlake-io/shared_invite/zt-20envwfbk-JUTZ4z9jSeRnrvNhBFLg9w">Join Slack</InlineLink>
<InlineLink link="https://devlake.apache.org/community/subscribe">Subscribe to Mailing List</InlineLink>
</div>
</div>
<img src={Join} alt='' className="w-[216px] h-[200px] sm:mx-auto sm:mb-4" />
</div>)
}