Skip to content

Commit

Permalink
reposition main sponsor
Browse files Browse the repository at this point in the history
  • Loading branch information
Tschonti committed Jan 29, 2024
1 parent e37e698 commit 99723c1
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
8 changes: 4 additions & 4 deletions src/components/navbar/navbar-items.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ const links = [
href: '/',
label: 'főoldal',
},
{
href: '/conferences',
label: 'konferenciák',
},
// {
// href: '/presentations',
// label: 'előadások',
// },
{
href: '/contact',
label: 'kapcsolat',
Expand Down
21 changes: 11 additions & 10 deletions src/components/sponsors/sponsor-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,7 @@ export function SponsorSection({ sectionTitle, companies }: Props) {
<div className='w-full bg-white'>
<section className={styles.section}>
<h2 className='text-3xl font-bold'>{sectionTitle}</h2>
<div className='flex flex-col justify-center'>
<h3 className='mb-auto text-3xl'>Főtámogató</h3>
<div className='my-auto flex flex-wrap items-center justify-evenly'>
{mainSponsor?.logoUrl && (
<div className='mx-0 h-auto w-72 sm:w-96 2xl:w-80'>
<SponsorLogo company={mainSponsor} />
</div>
)}
</div>
</div>

<div>
<h3 className='text-3xl'>Kiemelt támogatók</h3>
<div className={styles.containerMany}>
Expand All @@ -40,6 +31,16 @@ export function SponsorSection({ sectionTitle, companies }: Props) {
)}
</div>
</div>
<div className='flex flex-col justify-center'>
<h3 className='mb-auto text-3xl'>Főtámogató</h3>
<div className='my-auto flex flex-wrap items-center justify-evenly'>
{mainSponsor?.logoUrl && (
<div className='mx-0 h-auto w-72 sm:w-96 2xl:w-80'>
<SponsorLogo company={mainSponsor} />
</div>
)}
</div>
</div>
<div>
<h3 className='text-3xl'>További támogatóink</h3>
<div className={styles.containerMany}>
Expand Down

0 comments on commit 99723c1

Please sign in to comment.