delete red shipwreck pics and rearrange some others

This commit is contained in:
Chuck Dries 2022-12-29 09:38:53 -07:00
parent 58148ed41c
commit 21ec2a5a28
No known key found for this signature in database
GPG Key ID: A00B7AEAE1DC5BE6
8 changed files with 13 additions and 19 deletions

BIN
data/gallery/DSC02365.jpg (Stored with Git LFS)

Binary file not shown.

BIN
data/gallery/DSC02610-2.jpg (Stored with Git LFS)

Binary file not shown.

BIN
data/gallery/DSC02615-2.jpg (Stored with Git LFS)

Binary file not shown.

BIN
data/gallery/DSC02615.jpg (Stored with Git LFS)

Binary file not shown.

BIN
data/gallery/DSC09944.jpg (Stored with Git LFS)

Binary file not shown.

View File

@ -142,7 +142,7 @@ const GalleryImage = ({ data, location: { state } }) => {
const verticalPad = ar > 1 ? "250px" : "100px"; const verticalPad = ar > 1 ? "250px" : "100px";
const shutterSpeed = React.useMemo( const shutterSpeed = React.useMemo(
() => getShutterFractionFromExposureTime(meta.ExposureTime || 0), () => meta.ExposureTime ? getShutterFractionFromExposureTime(meta.ExposureTime) : null,
[meta] [meta]
); );
const dateTaken = React.useMemo(() => new Date(dt), [dt]); const dateTaken = React.useMemo(() => new Date(dt), [dt]);
@ -288,7 +288,7 @@ const GalleryImage = ({ data, location: { state } }) => {
title="ISO" title="ISO"
/> />
<MetadataItem <MetadataItem
data={meta.FocalLength + "mm"} data={meta.FocalLength ? meta.FocalLength + "mm" : null}
icon={<Dolly UNSAFE_style={IconStyle} />} icon={<Dolly UNSAFE_style={IconStyle} />}
title="focal" title="focal"
/> />

View File

@ -78,8 +78,8 @@ const IndexPage = ({
LightMuted: [0, 0, 0], LightMuted: [0, 0, 0],
Vibrant: [0, 0, 0], Vibrant: [0, 0, 0],
LightVibrant: [0, 0, 0], LightVibrant: [0, 0, 0],
DarkMuted: [229, 239, 246], DarkMuted: [238, 238, 238],
DarkVibrant: [229, 239, 246], DarkVibrant: [238, 238, 238],
})} })}
/> />
</Helmet> </Helmet>
@ -120,8 +120,8 @@ export const query = graphql`
sourceInstanceName: { eq: "gallery" } sourceInstanceName: { eq: "gallery" }
base: { in: [ base: { in: [
# "DSC02610-2.jpg", # "DSC02610-2.jpg",
# "DSC02615-2.jpg",
"DSC05702.jpg", "DSC05702.jpg",
# "DSC02615-2.jpg"
"DSC05538.jpg" "DSC05538.jpg"
] } ] }
} }

View File

@ -171,8 +171,8 @@ const GalleryPage = ({ data }: PageProps<Queries.GalleryPageQueryQuery>) => {
LightMuted: [0, 0, 0], LightMuted: [0, 0, 0],
Vibrant: [0, 0, 0], Vibrant: [0, 0, 0],
LightVibrant: [0, 0, 0], LightVibrant: [0, 0, 0],
DarkMuted: [229, 239, 246], DarkMuted: [238, 238, 238],
DarkVibrant: [229, 239, 246], DarkVibrant: [238, 238, 238],
})} })}
/> />
</Helmet> </Helmet>