diff --git a/src/components/PhotoCarousel/PhotoCarousel.mdx b/src/components/PhotoCarousel/PhotoCarousel.mdx
index 718535df..d2ef465f 100644
--- a/src/components/PhotoCarousel/PhotoCarousel.mdx
+++ b/src/components/PhotoCarousel/PhotoCarousel.mdx
@@ -39,7 +39,7 @@ With the Graphics Kit, you'll likely get your text value from an ArchieML doc...
type: photo-carousel
# List of photo data
-[.photos]
+[.images]
# Photo 1
src: 'images/myImage.jpg', # The source path can be a URL or a local path
altText: 'A picture of...',
@@ -62,6 +62,8 @@ type: photo-carousel
... which you'll parse out of a ArchieML block object before passing to the `PhotoCarousel` component.
+> **Note:** If you're using local images files stored in your Graphics Kit project, prefix `assets` to the image source path, as in the example below.
+
```svelte
{#each content.blocks as block}
{#if block.type === 'photo-carousel'}
-
+ ({
+ ...img,
+ src: `${assets}/${img.src}`,
+ }))}
+ />
{/if}
{/each}
-
```
@@ -88,15 +92,15 @@ type: photo-carousel
To customise the credit and/or caption style, use the `credit` and `caption` [snippets](https://svelte.dev/docs/svelte/snippet) and pass `photo` as an argument.
```svelte
-
-
- {#snippet credit(photo)}
-