Skip to content

Commit

Permalink
Merge pull request #38 from gdg-uberlandia/add-company
Browse files Browse the repository at this point in the history
Add company
  • Loading branch information
taciomedeiros authored Oct 22, 2023
2 parents d6401fc + e221bb6 commit 75f4987
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
13 changes: 13 additions & 0 deletions public/.github/workflows/bohr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: bohr.io deploy
on:
push:
repository_dispatch:
types: [bohr-dispatch]
permissions: write-all
jobs:
deploy:
name: Deploy on bohr.io
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: bohr-io/action@main
2 changes: 1 addition & 1 deletion src/components/speakers-section/speaker-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const SpeakerCard: React.FC<SpeakerCardProps> = (speaker) => {
width={120}
/>
<h2 className={styles.card_name}>{speaker.name}</h2>
<p className={styles.card_topic}>{speaker.title}</p>
<p className={styles.card_topic}>{speaker.title}{speaker?.company ? ` - ${speaker?.company}` : ''}</p>
<p className={styles.card_profile}>{speaker.topic}</p>
</div>
<SpeakerModal
Expand Down
1 change: 0 additions & 1 deletion src/components/sponsors-section/Sponsors.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

.SponsorSection h2 {
font-size: 2.5rem;
padding-left: 0.75rem;
}

.SponsorWrapper {
Expand Down
4 changes: 2 additions & 2 deletions src/components/sponsors-section/sponsors-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const SponsorsSection: React.FC<SponsorsSectionProps> = ({ sponsors }) => {


return (
<Container>
<Container style={{ paddingLeft: "0px;" }}>
<section className={styles.SponsorSection}>
<Container>
<Row>
Expand All @@ -62,7 +62,7 @@ const SponsorsSection: React.FC<SponsorsSectionProps> = ({ sponsors }) => {
if (sponsors[el] != null)
return mapSponsorLevel(sponsors[el], el === "staff")
})}

{/*<h4>
Organização
</h4>
Expand Down

0 comments on commit 75f4987

Please sign in to comment.