-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
168 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,164 @@ | ||
import type {PortfolioPhoto} from "src/types"; | ||
|
||
export const photoPortfolio: PortfolioPhoto[] = [ | ||
{ | ||
title: "Hackberry Canyon", | ||
description: "A resonant slot canyon in Capitol Reef.", | ||
}, | ||
{ | ||
title: "Willow", | ||
description: "Our sweet and wonderful Willow.", | ||
}, | ||
{ | ||
title: "Optics", | ||
description: "", | ||
}, | ||
{ | ||
title: "Miwok Homes", | ||
description: "", | ||
}, | ||
{ | ||
title: "Radio Nowhere", | ||
description: "", | ||
}, | ||
{ | ||
title: "Ascent", | ||
description: "", | ||
}, | ||
{ | ||
title: "Mosquito Lake", | ||
description: "Composed similarly to a photo by my late uncle Bob Hovey.", | ||
}, | ||
{ | ||
title: "Trix Yogurt Sunset", | ||
description: "", | ||
}, | ||
{ | ||
title: "Crimson Butte", | ||
description: "", | ||
}, | ||
{ | ||
title: "Secluded Cove", | ||
description: "", | ||
}, | ||
{ | ||
title: "Three Phase", | ||
description: "", | ||
}, | ||
{ | ||
title: "Rayleigh's Gleaming", | ||
description: "Taken after an early Winter storm.", | ||
}, | ||
{ | ||
title: "Continuum", | ||
description: "", | ||
}, | ||
{ | ||
title: "Badlands", | ||
description: "", | ||
}, | ||
{ | ||
title: "Rhyolite", | ||
description: "", | ||
}, | ||
{ | ||
title: "Solar Quills", | ||
description: "", | ||
}, | ||
{ | ||
title: "Living in the Moment", | ||
description: "", | ||
}, | ||
{ | ||
title: "Lil Fren", | ||
description: "", | ||
}, | ||
{ | ||
title: "The Sisters", | ||
description: "", | ||
}, | ||
{ | ||
title: "Strata", | ||
description: "", | ||
}, | ||
{ | ||
title: "Shoreline", | ||
description: "", | ||
}, | ||
{ | ||
title: "Amador Iris", | ||
description: "", | ||
}, | ||
{ | ||
title: "Vein", | ||
description: "", | ||
}, | ||
{ | ||
title: "Lunar Eclipse", | ||
description: "", | ||
}, | ||
{ | ||
title: "Darmera Peltata", | ||
description: "", | ||
}, | ||
{ | ||
title: "Granite Spring", | ||
description: "Taken using lens-whacking on a 50mm.", | ||
}, | ||
{ | ||
title: "Hammock Horizon", | ||
description: "", | ||
}, | ||
{ | ||
title: "Caldor Burn Scar", | ||
description: "", | ||
}, | ||
{ | ||
title: "Tiger Pool", | ||
description: "", | ||
}, | ||
{ | ||
title: "Laminar", | ||
description: "", | ||
}, | ||
{ | ||
title: "Evening Lichen", | ||
description: "", | ||
}, | ||
{ | ||
title: "Electra Bloom", | ||
description: "", | ||
}, | ||
{ | ||
title: "Forgotten Garden", | ||
description: "", | ||
}, | ||
{ | ||
title: "All of Us, Stars", | ||
description: "", | ||
}, | ||
{ | ||
title: "Grand Teton", | ||
description: "", | ||
}, | ||
{ | ||
title: "Freel from Winemucca Lake", | ||
description: "", | ||
}, | ||
{ | ||
title: "Transmissions", | ||
description: "", | ||
}, | ||
{ | ||
title: "Batholiths", | ||
description: "", | ||
}, | ||
{ | ||
title: "Jade", | ||
description: "", | ||
}, | ||
{ | ||
title: "Orion Nebula", | ||
description: "", | ||
}, | ||
].map((partial, i) => ({...partial, index: i + 1})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters