gallery style fixes
|
@ -21,6 +21,8 @@ export default function Footer() {
|
||||||
<div>{`© ${new Date().getFullYear()}`}</div>
|
<div>{`© ${new Date().getFullYear()}`}</div>
|
||||||
<div>{` • `}</div>
|
<div>{` • `}</div>
|
||||||
<Link href="/">{siteMetadata.title}</Link>
|
<Link href="/">{siteMetadata.title}</Link>
|
||||||
|
<div>{` • `}</div>
|
||||||
|
<Link href="https://coryd.dev">Site by Cory</Link>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
|
@ -9,7 +9,7 @@ const PhotoGallery = (props) => {
|
||||||
const [photoIndex, setPhotoIndex] = useState(0)
|
const [photoIndex, setPhotoIndex] = useState(0)
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-row gap-2 p-2">
|
<div className="grid grid-cols-4 gap-2 p-2">
|
||||||
{data.length
|
{data.length
|
||||||
? data.map((d: string, index: number) => (
|
? data.map((d: string, index: number) => (
|
||||||
<Image
|
<Image
|
||||||
|
@ -20,7 +20,7 @@ const PhotoGallery = (props) => {
|
||||||
setIsOpen(true)
|
setIsOpen(true)
|
||||||
}}
|
}}
|
||||||
src={d}
|
src={d}
|
||||||
className="w-full cursor-pointer object-cover"
|
className="w-1/4 cursor-pointer object-cover"
|
||||||
width="300px"
|
width="300px"
|
||||||
height="300px"
|
height="300px"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -14,6 +14,25 @@ const mediaData = [
|
||||||
'/static/images/media/photos/ashes-of-autumn/04.jpg',
|
'/static/images/media/photos/ashes-of-autumn/04.jpg',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
type: 'video',
|
||||||
|
title: 'Drum recording',
|
||||||
|
data: 'lsbf4G8CbFs',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'photos',
|
||||||
|
title: 'Live at The Metal Bar',
|
||||||
|
data: [
|
||||||
|
'/static/images/media/photos/live-at-metal-bar/01.jpg',
|
||||||
|
'/static/images/media/photos/live-at-metal-bar/02.jpg',
|
||||||
|
'/static/images/media/photos/live-at-metal-bar/03.jpg',
|
||||||
|
'/static/images/media/photos/live-at-metal-bar/04.jpg',
|
||||||
|
'/static/images/media/photos/live-at-metal-bar/05.jpg',
|
||||||
|
'/static/images/media/photos/live-at-metal-bar/06.jpg',
|
||||||
|
'/static/images/media/photos/live-at-metal-bar/07.jpg',
|
||||||
|
'/static/images/media/photos/live-at-metal-bar/08.jpg',
|
||||||
|
],
|
||||||
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
export default mediaData
|
export default mediaData
|
||||||
|
|
BIN
public/static/images/media/photos/live-at-metal-bar/01.jpg
Executable file
After Width: | Height: | Size: 39 KiB |
BIN
public/static/images/media/photos/live-at-metal-bar/02.jpg
Executable file
After Width: | Height: | Size: 33 KiB |
BIN
public/static/images/media/photos/live-at-metal-bar/03.jpg
Executable file
After Width: | Height: | Size: 33 KiB |
BIN
public/static/images/media/photos/live-at-metal-bar/04.jpg
Executable file
After Width: | Height: | Size: 32 KiB |
BIN
public/static/images/media/photos/live-at-metal-bar/05.jpg
Executable file
After Width: | Height: | Size: 32 KiB |
BIN
public/static/images/media/photos/live-at-metal-bar/06.jpg
Executable file
After Width: | Height: | Size: 24 KiB |
BIN
public/static/images/media/photos/live-at-metal-bar/07.jpg
Executable file
After Width: | Height: | Size: 18 KiB |
BIN
public/static/images/media/photos/live-at-metal-bar/08.jpg
Executable file
After Width: | Height: | Size: 25 KiB |