componised ImageRow from /feed

This commit is contained in:
2026-04-26 10:46:56 +02:00
parent 455eb4c291
commit d746f8ef6f
4 changed files with 83 additions and 65 deletions

View File

@@ -1,15 +1,12 @@
import { type A11yImage } from "$lib/media/a11y-img";
export interface FeedEntry {
id: string;
title: string;
subtitle: string;
date: string;
posted: string;
images: FeedImage[];
}
interface FeedImage {
src: string;
alt: string;
images: A11yImage[];
}
export let entries: FeedEntry[] = [