src/components/gallery.tsximport clsx from 'clsx'import React, { Children, isValidElement } from 'react'import imageMeta from '@/../_data/_studio.json'import { LightboxWrapper } from '@/components/lightbox-wrapper'export interface GalleryProps {columns?: numberclassName?: stringchildren: React.ReactNode/** Gallery alignment - controls max width */align?: 'none' | 'wide' | 'content'}type ImageSize = 'small' | 'medium' | 'large' | 'full'interface Dimensions {w: numberh: number}
Showing the first 20 lines.
Get full code