use committee boxes
This commit is contained in:
parent
b80b732555
commit
0065969a23
1 changed files with 11 additions and 10 deletions
|
@ -8,6 +8,7 @@ import InvolveBox from "./components/InvolveBox";
|
||||||
import SocialCard from "./components/SocialCard";
|
import SocialCard from "./components/SocialCard";
|
||||||
import Carousel from "./components/Carousel";
|
import Carousel from "./components/Carousel";
|
||||||
import Footer from "./components/Footer";
|
import Footer from "./components/Footer";
|
||||||
|
import CommitteeBox from "./components/CommitteeBox";
|
||||||
|
|
||||||
class Main extends React.Component {
|
class Main extends React.Component {
|
||||||
constructor() {
|
constructor() {
|
||||||
|
@ -32,31 +33,31 @@ class Main extends React.Component {
|
||||||
></DefaultSection>
|
></DefaultSection>
|
||||||
<DefaultSection className={"our-comms"} title="Our Committees">
|
<DefaultSection className={"our-comms"} title="Our Committees">
|
||||||
<div className="cards">
|
<div className="cards">
|
||||||
<InvolveBox
|
<CommitteeBox
|
||||||
boxTitle=""
|
boxTitle=""
|
||||||
image="/assets/img/committees/technical.webp"
|
image="/assets/img/committees/technical.webp"
|
||||||
description="Technical Committee"
|
description="Technical Committee"
|
||||||
></InvolveBox>
|
></CommitteeBox>
|
||||||
<InvolveBox
|
<CommitteeBox
|
||||||
boxTitle=""
|
boxTitle=""
|
||||||
image="/assets/img/committees/social.webp"
|
image="/assets/img/committees/social.webp"
|
||||||
description="Social Committee"
|
description="Social Committee"
|
||||||
></InvolveBox>
|
></CommitteeBox>
|
||||||
<InvolveBox
|
<CommitteeBox
|
||||||
boxTitle=""
|
boxTitle=""
|
||||||
image="/assets/img/committees/professional.webp"
|
image="/assets/img/committees/professional.webp"
|
||||||
description="Professional Committee"
|
description="Professional Committee"
|
||||||
></InvolveBox>
|
></CommitteeBox>
|
||||||
<InvolveBox
|
<CommitteeBox
|
||||||
boxTitle=""
|
boxTitle=""
|
||||||
image="/assets/img/committees/pr.webp"
|
image="/assets/img/committees/pr.webp"
|
||||||
description="PR Committee"
|
description="PR Committee"
|
||||||
></InvolveBox>
|
></CommitteeBox>
|
||||||
<InvolveBox
|
<CommitteeBox
|
||||||
boxTitle=""
|
boxTitle=""
|
||||||
image="/assets/img/committees/outreach.webp"
|
image="/assets/img/committees/outreach.webp"
|
||||||
description="Outreach Committee"
|
description="Outreach Committee"
|
||||||
></InvolveBox>
|
></CommitteeBox>
|
||||||
</div>
|
</div>
|
||||||
</DefaultSection>
|
</DefaultSection>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue