import type { Meta, StoryObj } from '@storybook/nextjs' import ImageGallery from '.' const IMAGE_SOURCES = [ 'data:image/svg+xml;utf8,Dataset', 'data:image/svg+xml;utf8,Playground', 'data:image/svg+xml;utf8,Workflow', 'data:image/svg+xml;utf8,Prompts', ] const meta = { title: 'Base/Data Display/ImageGallery', component: ImageGallery, parameters: { docs: { description: { component: 'Responsive thumbnail grid with lightbox preview for larger imagery.', }, source: { language: 'tsx', code: ` ', 'data:image/svg+xml;utf8,', ]} /> `.trim(), }, }, }, tags: ['autodocs'], args: { srcs: IMAGE_SOURCES, }, } satisfies Meta export default meta type Story = StoryObj export const Default: Story = {}