-
- {value.title}
+
+ {title}
- {value.author}
+ {author}
diff --git a/src/components/atoms/media-tile.astro b/src/components/atoms/media-tile.astro
index 7ec2319..6327ad7 100644
--- a/src/components/atoms/media-tile.astro
+++ b/src/components/atoms/media-tile.astro
@@ -8,25 +8,27 @@ export interface Props {
value: Media;
}
-const { value } = Astro.props;
+const {
+ value: { image, title, type, url },
+} = Astro.props;
---
-