import type { Meta, StoryObj } from '@storybook/sveltekit'; import PostCardCompact from './PostCardCompact.svelte'; const CMS_ASSET = 'https://cms.pm86.de/api/assets/pages/img_2814-ar4x2.webp?_environment=windwiderstand'; const meta = { title: 'Organisms/PostCardCompact', component: PostCardCompact, tags: ['autodocs'], } satisfies Meta; export default meta; type Story = StoryObj; export const Standard: Story = { args: { post: { _slug: 'frist-laeuft', slug: 'frist-laeuft', headline: 'Frist für Einwendungen läuft', created: '2026-06-01T09:00:00Z', postTag: [{ name: 'Verfahren' }], _resolvedImageUrl: CMS_ASSET, } as never, href: '/posts/frist-laeuft', }, };