Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified public/images/profile/oskari_kyllonen.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/partnerLogos/turku-audio.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/AfterpartySection.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<p class="text-lg font-bold">Afterparty includes:</p>
<ul class="list-disc list-inside mt-2 mb-2">
<li class="ml-12">Sauna.</li>
<li class="ml-12">Sauna (please wear a swimsuit).</li>
<li class="ml-12">Snacks and drinks.</li>
<li class="ml-12">DJ, karaoke and music.</li>
<li class="ml-12">Opportunity to make deeper connections.</li>
Expand Down
81 changes: 56 additions & 25 deletions src/components/PartnersStatic.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@ const partners: Partner[] = [
homepageLink: new URL("https://www.cgi.com/fi/fi"),
logo: "/partnerLogos/cgi_white.png",
},
{
name: "Turun kaupunki",
homepageLink: new URL("https://www.turku.fi"),
logo: "/partnerLogos/turku.png"
},
{
name: "Kongsberg",
homepageLink: new URL("https://www.kongsberg.com"),
Expand All @@ -53,11 +48,6 @@ const partners: Partner[] = [
homepageLink: new URL("https://wapice.com"),
logo: "/partnerLogos/wapice-logo.webp",
},
{
name: "Turun Yliopisto UTU",
homepageLink: new URL("https://www.utu.fi"),
logo: "/partnerLogos/UTU_logo.png",
},
{
name: "TEK ry",
homepageLink: new URL("https://www.tek.fi"),
Expand All @@ -68,16 +58,6 @@ const partners: Partner[] = [
homepageLink: new URL("https://www.twoday.fi"),
logo: "/partnerLogos/twoday.png",
},
{
name: "Purje-hanke",
homepageLink: new URL("https://www.ely-keskus.fi/purje-hanke"),
logo: "/partnerLogos/Purje_logo_white.png",
},
{
name: "EU",
homepageLink: new URL("https://europa.eu"),
logo: "/partnerLogos/EU_Co_Outline.png",
},
{
name: "Teleste",
homepageLink: new URL("https://www.teleste.com"),
Expand All @@ -100,6 +80,34 @@ const partners: Partner[] = [
}
];

const supporting: Partner[] = [
{
name: "Turun kaupunki",
homepageLink: new URL("https://www.turku.fi"),
logo: "/partnerLogos/turku.png"
},
{
name: "Purje-hanke",
homepageLink: new URL("https://www.ely-keskus.fi/purje-hanke"),
logo: "/partnerLogos/Purje_logo_white.png",
},
{
name: "EU",
homepageLink: new URL("https://europa.eu"),
logo: "/partnerLogos/EU_Co_Outline.png",
},
{
name: "Turku Audio",
homepageLink: new URL("https://turkuaudio.fi"),
logo: "/partnerLogos/turku-audio.png",
},
{
name: "Mankeli Solutions Oy",
homepageLink: new URL("https://mankelisolutions.fi"),
logo: "/partnerLogos/mankeli.svg",
}
];

const ecosystem: Partner[] = [

{
Expand Down Expand Up @@ -141,11 +149,6 @@ const ecosystem: Partner[] = [
name: "TIO ry",
homepageLink: new URL("https://tio.fi"),
logo: "/partnerLogos/TIO_logo_white.png",
},
{
name: "Mankeli Solutions Oy",
homepageLink: new URL("https://mankelisolutions.fi"),
logo: "/partnerLogos/mankeli.svg",
}
];

Expand Down Expand Up @@ -202,6 +205,34 @@ export default function StaticPartnersPage() {
))}
</div>
</section>

<h5 className="text-center text-accent">
SUPPORTING PARTNERS:
</h5>
<section>
<div className="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-12 mb-8 bg-container rounded-lg py-4 px-4 shadow-root-card">
{supporting.map((support) => (
<a
href={support.homepageLink.toString()}
target="_blank"
rel="noopener noreferrer"
className="group"
>
<div className="flex flex-col items-center gap-4 p-4">
<span className="flex h-24 w-36 items-center justify-center">
<img
src={support.logo}
className="max-w-full max-h-full filter brightness-0 invert"


/>
</span>
</div>
</a>
))}
</div>
</section>

<h5 className="text-center text-accent">
ECOSYSTEM:
</h5>
Expand Down
Loading