Skip to content

chore: update sponsorship section #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 20, 2025
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
11 changes: 0 additions & 11 deletions src/assets/spiria.svg

This file was deleted.

18 changes: 8 additions & 10 deletions src/components/Sponsors.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,21 @@ import Jetbrains from "../assets/jetbrains.svg";
import JSNation from "../assets/jsnation.svg";
import Owner from "../assets/owner.webp";
import Shopify from "../assets/shopify.svg";
import Spiria from "../assets/spiria.svg";
import TalentLab from "../assets/talentlab.webp";

const sponsors = [
{
name: "TalentLab",
logo: TalentLab,
href: "https://talentlab.com",
},
{ name: "Shopify", logo: Shopify, href: "https://shopify.com" },
{
name: "Fullscript",
logo: Fullscript,
href: "https://fullscript.com",
},
{ name: "Owner", logo: Owner, href: "https://owner.com" },
{ name: "Spiria", logo: Spiria, href: "https://spiria.com" },
{
name: "TalentLab",
logo: TalentLab,
href: "https://talentlab.com",
},
{
name: "Jetbrains",
logo: Jetbrains,
Expand Down Expand Up @@ -92,7 +90,7 @@ const sponsors = [
display: flex;
flex-direction: column;
gap: var(--gap);
max-width: 1440px;
max-width: 1218px;
margin: auto;
}

Expand All @@ -104,7 +102,7 @@ const sponsors = [

.marquee__hidden {
display: none;
@media screen and (max-width: 1440px) {
@media screen and (max-width: 1218px) {
display: flex;
}
}
Expand All @@ -117,7 +115,7 @@ const sponsors = [
gap: 16px;
animation: none;

@media screen and (max-width: 1440px) {
@media screen and (max-width: 1218px) {
animation: scroll 12s linear infinite;
}
}
Expand Down