-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4bd23f3
commit 1afde47
Showing
12 changed files
with
69 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
import React from "react"; | ||
import HeaderData from "../../../assets/data/HeaderContent"; | ||
import sponsors from "../../../assets/data/SponsorsContent"; | ||
import { Header } from "../../shared"; | ||
import Marquee from "react-fast-marquee"; | ||
import SingleSponsors from "../sponsors/singlesponsors/SingleSponsors"; | ||
|
||
const CommunityPartners = () => { | ||
return ( | ||
<> | ||
<div className="sponsors__parent" id="sponsors"> | ||
<Header {...HeaderData.cp} /> | ||
|
||
<div className="sponsors__container_flex"> | ||
<div className="sponsors__container domain_container"> | ||
<div className="sponsors__flexbox community"> | ||
<Marquee | ||
autoFill={true} | ||
pauseOnHover={true} | ||
className="testimonials__container" | ||
speed={60} | ||
direction="right" | ||
> | ||
{sponsors["Community"].slice(0, 6)?.map((item, index) => { | ||
return ( | ||
<SingleSponsors key={index} sponsor={item} type="silver" /> | ||
); | ||
})} | ||
</Marquee> | ||
</div> | ||
<br /> | ||
<br /> | ||
<div className="sponsors__flexbox community"> | ||
<Marquee | ||
autoFill={true} | ||
pauseOnHover={true} | ||
className="testimonials__container" | ||
speed={60} | ||
direction="left" | ||
> | ||
{sponsors["Community"].slice(6)?.map((item, index) => { | ||
return ( | ||
<SingleSponsors key={index} sponsor={item} type="silver" /> | ||
); | ||
})} | ||
</Marquee> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</> | ||
); | ||
}; | ||
|
||
export default CommunityPartners; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters