Skip to content

Commit

Permalink
Adjust logo size of sponsors to better reflect package size
Browse files Browse the repository at this point in the history
  • Loading branch information
xam-ps authored and phntxx committed Apr 3, 2024
1 parent 63f97e2 commit c333796
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 16 deletions.
Binary file modified src/lib/images/supporters/conti.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/lib/images/supporters/rnext.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/lib/images/supporters/zollner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
44 changes: 28 additions & 16 deletions src/routes/landing/Supporters.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,68 +20,80 @@
{
src: msg,
alt: 'MSG Group',
link: 'https://www.msg.group'
link: 'https://www.msg.group',
width: 'w-20'
},
{
src: trinnovative,
alt: 'Trinnovative',
link: 'https://www.trinnovative.de/'
link: 'https://www.trinnovative.de/',
width: 'w-40'
},
{
src: edag,
alt: 'EDAG',
link: 'https://www.edag.com/de/'
link: 'https://www.edag.com/de/',
width: 'w-40'
},
{
src: intive,
alt: 'intive',
link: 'https://intive.com'
link: 'https://intive.com',
width: 'w-20'
}
],
starter_2: [
{
src: internetx,
alt: 'InternetX',
link: 'https://www.internetx.com'
link: 'https://www.internetx.com',
width: 'w-20'
}
],
medium: [
{
src: infineon,
alt: 'Infineon',
link: 'https://www.infineon.com/cms/de/'
link: 'https://www.infineon.com/cms/de/',
width: 'w-70'
},
{
src: tcon,
alt: 'tcon',
link: 'https://careers.team-con.de'
link: 'https://careers.team-con.de',
width: 'w-70'
},
{
src: vector,
alt: 'Vector',
link: 'https://jobs.vector.com'
link: 'https://jobs.vector.com',
width: 'w-70'
},
{
src: krones,
alt: 'Syskron',
link: 'https://www.krones.com/en/career/krones.digital.php'
link: 'https://www.krones.com/en/career/krones.digital.php',
width: 'w-70'
}
],
premium: [
{
src: continental,
alt: 'Continental',
link: 'https://www.continental.com/en/career/'
link: 'https://www.continental.com/en/career/',
width: 'full-size pt-3'
},
{
src: rnext,
alt: 'R-Next',
link: 'https://www.regensburg.de/r-next'
link: 'https://www.regensburg.de/r-next',
width: 'full-size pt-2'
},
{
src: zollner,
alt: 'Zollner',
link: 'https://www.zollner.de/karriere',
width: 'full-size',
class: 'md:ml-0'
}
]
Expand Down Expand Up @@ -112,31 +124,31 @@

<div class="grid grid-cols-1 md:grid-cols-3">
{#each images.premium as image}
<a class="p-3 " href={image.link}>
<img src={image.src} alt={image.alt} />
<a class="px-10 py-8" href={image.link}>
<img src={image.src} class={image.width} alt={image.alt} />
</a>
{/each}
</div>
<hr />
<div class="grid grid-cols-1 md:grid-cols-4">
{#each images.medium as image}
<a class="p-3 m-auto" href={image.link}>
<img src={image.src} class="w-60" alt={image.alt} />
<img src={image.src} class={image.width} alt={image.alt} />
</a>
{/each}
</div>
<hr />
<div class="grid grid-cols-1 md:grid-cols-4">
{#each images.starter_1 as image}
<a class="p-3 m-auto" href={image.link}>
<img src={image.src} class="w-40" alt={image.alt} />
<img src={image.src} class={image.width} alt={image.alt} />
</a>
{/each}
</div>
<div class="grid grid-cols-1 md:grid-cols-3">
{#each images.starter_2 as image}
<a class="p-3 m-auto" href={image.link}>
<img src={image.src} class="w-40" alt={image.alt} />
<img src={image.src} class={image.width} alt={image.alt} />
</a>
{/each}
</div>
Expand Down

0 comments on commit c333796

Please sign in to comment.