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
136 changes: 136 additions & 0 deletions public/images/sponsors/LOL.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions public/images/sponsors/epam.svg
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/images/sponsors/genlogs/1.webp
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/images/sponsors/genlogs/2.webp
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/images/sponsors/genlogs/3.webp
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/images/sponsors/genlogs/4.webp
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/images/sponsors/genlogs/5.webp
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/images/sponsors/provectus/1.webp
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/images/sponsors/provectus/2.webp
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/images/sponsors/provectus/3.webp
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/images/sponsors/provectus/4.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/data/sponsor-gallery.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
import type { GalleryImage } from "@/assets/data/gallery";
import { genlogsGalleryImages } from "@/assets/data/sponsor-gallery/genlogs";
import { lokaGalleryImages } from "@/assets/data/sponsor-gallery/loka";
import { provectusGalleryImages } from "@/assets/data/sponsor-gallery/provectus";

const sponsorGalleryBySlug: Partial<Record<string, GalleryImage[]>> = {
genlogs: genlogsGalleryImages,
loka: lokaGalleryImages,
provectus: provectusGalleryImages,
};

export function getSponsorGalleryImages(slug: string): GalleryImage[] {
Expand Down
25 changes: 25 additions & 0 deletions src/assets/data/sponsor-gallery/genlogs.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import type { GalleryImage } from "@/assets/data/gallery";

/** Gallery images for GenLogs — files in public/images/sponsors/genlogs/ */
export const genlogsGalleryImages: GalleryImage[] = [
{
src: "/images/sponsors/genlogs/1.webp",
alt: "GenLogs at PyCon Colombia",
},
{
src: "/images/sponsors/genlogs/2.webp",
alt: "GenLogs at PyCon Colombia",
},
{
src: "/images/sponsors/genlogs/3.webp",
alt: "GenLogs at PyCon Colombia",
},
{
src: "/images/sponsors/genlogs/4.webp",
alt: "GenLogs at PyCon Colombia",
},
{
src: "/images/sponsors/genlogs/5.webp",
alt: "GenLogs at PyCon Colombia",
},
];
21 changes: 21 additions & 0 deletions src/assets/data/sponsor-gallery/provectus.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import type { GalleryImage } from "@/assets/data/gallery";

/** Gallery images for Provectus — files in public/images/sponsors/provectus/ */
export const provectusGalleryImages: GalleryImage[] = [
{
src: "/images/sponsors/provectus/1.webp",
alt: "Provectus at PyCon Colombia",
},
{
src: "/images/sponsors/provectus/2.webp",
alt: "Provectus at PyCon Colombia",
},
{
src: "/images/sponsors/provectus/3.webp",
alt: "Provectus at PyCon Colombia",
},
{
src: "/images/sponsors/provectus/4.webp",
alt: "Provectus at PyCon Colombia",
},
];
Loading
Loading