Skip to content
Open
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
7 changes: 4 additions & 3 deletions content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ draft: false
url="./speakers"
target="_blank" >}}

{{< button-link label="Get Tickets"
url="https://ticket.apidays.global/event/apidays-paris-2025/3cccd07f-acb2-466e-8d91-cb1f208ecf42?_gl=1*1i6mx1e*_gcl_au*MTY3OTY0ODcyNS4xNzUwMTA0MzA4"
target="_blank" >}}

{{< button-link label="Buy Tickets"
url="https://ticket.apidays.global/event/apidays-paris-2025/3cccd07f-acb2-466e-8d91-cb1f208ecf42/json-schema-conference-at-apidays-paris-2025" target="_blank">}}


</div>

Expand Down
18 changes: 14 additions & 4 deletions data/partner.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
platinum:
- name: Octue
homepage_url: https://www.octue.com/
logo: octue.svg
description: Octue helps scientists and engineers in energy and climate sectors work with data.
- name: Sourcemeta
homepage_url: https://www.sourcemeta.com/
logo: sourcemeta.svg
description: Sourcemeta provides tools and solutions for JSON Schema validation and management.
- name: .txt
homepage_url: https://txt.co/
logo: txt.svg
description: .txt is a cloud platform for document management and collaboration.

media:
- name: dev.events
homepage_url: https://dev.events/
logo: dev-events.png
description: dev.events is a platform for discovering and promoting tech events.
2 changes: 1 addition & 1 deletion data/sponsors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ platinum:
items:
- name: Octue
homepage_url: https://www.octue.com/
logo: octue.svg
logo: octue.svg

gold:
items:
Expand Down
42 changes: 10 additions & 32 deletions layouts/partials/sponsor-card.html
Original file line number Diff line number Diff line change
@@ -1,25 +1,22 @@
<a class="sponsor-card" href="{{ .homepage_url }}" target="_blank" rel="noopener noreferrer">
<div class="sponsor-info">
<div class="sponsor-name">{{ .name }}</div>
{{ with .logo }}
<div class="sponsor-logo">
<img src="/images/sponsors/{{ . }}" alt="{{ $.name }}" />
</div>
{{ end }}
{{ with .logo }}
<div class="sponsor-logo">
<img src="/images/sponsors/{{ . }}" alt="{{ $.name }}" />
</div>

{{ end }}
</a>

<style>
/* Sponsor Card */
.sponsor-card {
width: 280px;
min-height: 150px; /* adjusts for logo */
min-height: 150px;
display: flex;
flex-direction: column;
justify-content: space-between;
justify-content: center;
align-items: center;
background: #fff;
border-radius: 2rem;
border-radius: 1rem;
overflow: hidden;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
text-decoration: none;
Expand All @@ -30,35 +27,16 @@
animation: fadeUp 0.6s forwards;
cursor: pointer;
padding: 1.5rem;
position: relative;
text-align: center;
}

.sponsor-card:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 2.5px;
background-color: #0071BC;
}

.sponsor-card:hover {
transform: translateY(-6px) scale(1.05);
transform: translateY(-6px);
box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.sponsor-name {
font-size: 1.3rem;
font-weight: 600;
color: #222;
margin-bottom: 0.5rem;
}

.sponsor-logo img {
max-width: 100%;
max-height: 80px;
max-height: 100px;
object-fit: contain;
}

Expand Down
Loading