delete red shipwreck pics and rearrange some others
This commit is contained in:
parent
58148ed41c
commit
21ec2a5a28
BIN
data/gallery/DSC02365.jpg
(Stored with Git LFS)
BIN
data/gallery/DSC02365.jpg
(Stored with Git LFS)
Binary file not shown.
BIN
data/gallery/DSC02610-2.jpg
(Stored with Git LFS)
BIN
data/gallery/DSC02610-2.jpg
(Stored with Git LFS)
Binary file not shown.
BIN
data/gallery/DSC02615-2.jpg
(Stored with Git LFS)
BIN
data/gallery/DSC02615-2.jpg
(Stored with Git LFS)
Binary file not shown.
BIN
data/gallery/DSC02615.jpg
(Stored with Git LFS)
BIN
data/gallery/DSC02615.jpg
(Stored with Git LFS)
Binary file not shown.
BIN
data/gallery/DSC09944.jpg
(Stored with Git LFS)
BIN
data/gallery/DSC09944.jpg
(Stored with Git LFS)
Binary file not shown.
@ -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"
|
||||||
/>
|
/>
|
||||||
|
@ -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"
|
||||||
] }
|
] }
|
||||||
}
|
}
|
||||||
|
@ -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>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user