Skip to content

Commit

Permalink
feat: creating silver companies release
Browse files Browse the repository at this point in the history
  • Loading branch information
Eduardoooxd committed Dec 13, 2022
1 parent 5e20777 commit 7bae395
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 14 deletions.
4 changes: 0 additions & 4 deletions src/components/CompaniesSection/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import { FunctionComponent } from 'react';
import { DiamondCompanies } from '../../utils/DiamondCompanies';
import { GoldCompanies } from '../../utils/GoldCompanies';
import { SilverCompanies } from '../../utils/SilverCompanies';
import CompaniesContainer from '../CompaniesContainer';

Expand All @@ -10,8 +8,6 @@ const CompaniesSection: FunctionComponent = () => {
return (
<section>
<HeadingText text="Empresas" />
<CompaniesContainer companies={DiamondCompanies} tier="Diamond" />
<CompaniesContainer companies={GoldCompanies} tier="Gold" />
<CompaniesContainer companies={SilverCompanies} tier="Silver" />
</section>
);
Expand Down
11 changes: 1 addition & 10 deletions src/components/Content/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@ import { ScheduleDays } from '../../utils/ScheduleDays';
import Activity from '../Activity';
import ComingSoon from '../ComingSoon';
import CompaniesSection from '../CompaniesSection';
import HeadingText from '../HeadingText';
import InfoText from '../InfoText';
import Map from '../Map';
import Schedule from '../Schedule';
import SponsorsContainer from '../SponsorsContainer';

interface ContentProps {
contentRef: React.RefObject<HTMLDivElement>;
Expand Down Expand Up @@ -61,13 +59,6 @@ const Content: React.FC<ContentProps> = ({ contentRef }) => {

<hr />

<HeadingText text="Patrocinadores" />
<section className="container-fluid">
<SponsorsContainer />
</section>

<hr />

<Schedule
firstDayTitle="Segunda-Feira - Auditório Magno"
secondDayTitle="Terça-feira - Sala de Eventos"
Expand All @@ -78,7 +69,7 @@ const Content: React.FC<ContentProps> = ({ contentRef }) => {

<Map />

<hr />
<hr className="mt-12" />

<ComingSoon />
</section>
Expand Down

0 comments on commit 7bae395

Please sign in to comment.