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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37 changes: 37 additions & 0 deletions src/app/conf/2026/components/gallery-strip/images/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,24 @@ import image2024_11 from "./2024/11.webp"
import image2024_12 from "./2024/12.webp"
import image2024_13 from "./2024/13.webp"

import image2025_1 from "./2025/1.webp"
import image2025_2 from "./2025/13.webp"
import image2025_3 from "./2025/4.webp"
import image2025_4 from "./2025/3.webp"
import image2025_5 from "./2025/7.webp"
import image2025_6 from "./2025/6.webp"
import image2025_7 from "./2025/5.webp"
import image2025_8 from "./2025/8.webp"
import image2025_9 from "./2025/9.webp"
import image2025_10 from "./2025/10.webp"
import image2025_11 from "./2025/12.webp"
import image2025_12 from "./2025/11.webp"
import image2025_13 from "./2025/2.webp"
import image2025_14 from "./2025/16.webp"
import image2025_15 from "./2025/15.webp"
import image2025_16 from "./2025/14.webp"
import image2025_17 from "./2025/17.webp"

export const imagesByYear = {
"2023": [
image2023_8,
Expand Down Expand Up @@ -53,4 +71,23 @@ export const imagesByYear = {
image2024_4,
image2024_1,
],
"2025": [
image2025_1,
image2025_2,
image2025_3,
image2025_4,
image2025_5,
image2025_6,
image2025_7,
image2025_8,
image2025_9,
image2025_10,
image2025_11,
image2025_12,
image2025_13,
image2025_14,
image2025_15,
image2025_16,
image2025_17,
],
}
4 changes: 2 additions & 2 deletions src/app/conf/2026/components/gallery-strip/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ import { Marquee } from "@/app/conf/_design-system/marquee"

import { imagesByYear } from "./images"

const YEARS = ["2024", "2023"] as const
const YEARS = ["2025", "2024", "2023"] as const
type Year = (typeof YEARS)[number]

export interface GalleryStripProps extends React.HTMLAttributes<HTMLElement> {}

export function GalleryStrip({ className, ...rest }: GalleryStripProps) {
const [selectedYear, setSelectedYear] = useState<Year>("2024")
const [selectedYear, setSelectedYear] = useState<Year>("2025")

return (
<section
Expand Down
Loading