99 StyledTitleContainer ,
1010 StyledTitleImg ,
1111} from "./Sponsors.style" ;
12- import { Supporters } from "./Supporters" ;
1312import SectionWrapper from "../../components/SectionWrapper/SectionWrapper" ;
1413import TitleSection from "../../components/SectionTitle/TitleSection" ;
1514import { BasicSponsor } from "../../views/Home/components/Sponsors/BasicSponsor" ;
@@ -24,6 +23,8 @@ import {
2423} from "../../views/Home/components/Sponsors/PremiumSponsors" ;
2524import { TopSponsors } from "../../views/Home/components/Sponsors/TopSponsors" ;
2625import { Communities } from "../../views/Home/components/Sponsors/Communities" ;
26+ import { Supporters } from "../../views/Home/components/Sponsors/Supporters" ;
27+ import { sponsors } from "./SponsorsData" ;
2728
2829export const buildSlashes = ( module : number ) => {
2930 const slashesElement = document . getElementById ( "Slashes" ) ;
@@ -39,6 +40,7 @@ export const buildSlashes = (module: number) => {
3940} ;
4041
4142const Sponsors : FC < React . PropsWithChildren < unknown > > = ( ) => (
43+
4244 < SectionWrapper color = { Color . WHITE } >
4345 < StyledSponsorsContainer id = "sponsors" >
4446 < StyledTitleContainer className = "TitleContainer" >
@@ -55,13 +57,13 @@ const Sponsors: FC<React.PropsWithChildren<unknown>> = () => (
5557 < StyledTitleImg alt = "more than - icon"
5658 src = { LessThanBlueWhiteIcon } />
5759 </ StyledTitleContainer >
58- < TopSponsors />
59- < PremiumSponsors />
60- < RegularSponsors />
61- < BasicSponsor />
62- < Communities />
63- < Supporters />
64- < MediaPartners />
60+ < TopSponsors sponsors = { sponsors . top } />
61+ < PremiumSponsors sponsors = { sponsors . premium } />
62+ < RegularSponsors sponsors = { sponsors . regular } />
63+ < BasicSponsor sponsors = { sponsors . basic } />
64+ < Communities sponsors = { sponsors . communities } />
65+ < Supporters sponsors = { sponsors . supporters } />
66+ < MediaPartners sponsors = { sponsors . media_partners } />
6567 </ StyledSponsorsContainer >
6668 </ SectionWrapper >
6769) ;
0 commit comments