Setup your Google Doc with the images, layouts and other props you want: ```yaml # Google doc block Type: photo-pack ID: my-photo-pack Class: mb-2 # adjust margin class as needed Width: wide TextWidth: normal Gap: 10 [.Images] Src: images/my-img-1.jpg AltText: Alt text Caption: Lorem ipsum. REUTERS/Photog MaxHeight: 600 # Optional max-height Src: images/my-img-2.jpg AltText: Alt text Caption: Lorem ipsum. REUTERS/Photog Src: images/my-img-3.jpg AltText: Alt text Caption: Lorem ipsum. REUTERS/Photog Src: images/my-img-4.jpg AltText: Alt text Caption: Lorem ipsum. REUTERS/Photog Src: images/my-img-5.jpg AltText: Alt text Caption: Lorem ipsum. REUTERS/Photog [] [.Layouts] Breakpoint: 750 Rows: 2,3 # Must add to total number of images! Breakpoint: 450 Rows: 1,2,2 [] ``` In your project, you can use the `getPhotoPackPropsFromDoc` utilty to easily convert the GoogleDoc format above into the props the `PhotoPack` component expects. ```svelte {#each content.blocks as block} {#if block.Type === 'text'} {:else if block.Type === 'photo-pack'} {/if} {/each} ```