Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replaced all the css into tailwind css on SponsorsSection component #1772

Merged
merged 8 commits into from
Nov 17, 2023
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import Container from 'components/Container/Container';
import Heading from 'components/Heading/Heading';
import PartnerLogoLink from 'components/PartnerLogoLink/PartnerLogoLink';
import partners, { PARTNER_TYPES } from 'common/constants/partners';
import styles from './SponsorsSection.module.css';

const isPaidSponsor = partner => partner.type === PARTNER_TYPES.PAID;

Expand All @@ -15,7 +14,7 @@ const SponsorsSection = () => (
These sponsors have donated cash to help keep the mission going here at Operation Code. They
may or may not have also donated to our cause via others means.
</p>
<div className={styles.columnsContainer}>
<div className="flex justify-center items-center flex-wrap m-4">
subhajit20 marked this conversation as resolved.
Show resolved Hide resolved
{partners
.filter(x => isPaidSponsor(x))
.map(partner => (
Expand All @@ -28,7 +27,7 @@ const SponsorsSection = () => (
The following organizations have helped Operation Code through services, products,
advertisements, scholarships, or sponsorships. We thank them for their contributions.
</p>
<div className={styles.columnsContainer}>
<div className="flex justify-center items-center flex-wrap m-4">
subhajit20 marked this conversation as resolved.
Show resolved Hide resolved
{partners
.filter(x => !isPaidSponsor(x))
.map(partner => (
Expand Down

This file was deleted.