feat: Add image assets and attribution data
This commit introduces a new, modular system for managing image assets. - Wrote the credits.js file to serve as a single source of truth for all image attributions. - Replaced existing placeholder images with new, properly licensed assets. - Created `_m-thumbs` and `_s-thumbs` directories with resized thumbnail versions of all original images.
235
src/_data/credits.js
Normal file
@@ -0,0 +1,235 @@
|
|||||||
|
/**
|
||||||
|
* @fileoverview Data file for media credits.
|
||||||
|
* This file contains the credit and attribution information for the
|
||||||
|
* media used in this demo.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* **Credit Template**
|
||||||
|
{
|
||||||
|
file_name: "",
|
||||||
|
category: "",
|
||||||
|
creator: "",
|
||||||
|
creator_url: "",
|
||||||
|
host: "",
|
||||||
|
src_url: "",
|
||||||
|
license: "",
|
||||||
|
license_url: ""
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
const credits = [
|
||||||
|
{
|
||||||
|
file_name: "apple-tree.jpg",
|
||||||
|
category: "trees",
|
||||||
|
creator: "Peter B. Jr.",
|
||||||
|
creator_url: "https://pixabay.com/users/peterbjr-26224443/",
|
||||||
|
host: "Pixabay",
|
||||||
|
src_url: "https://pixabay.com/images/search/apple%20tree/",
|
||||||
|
license: "Pixabay Content License",
|
||||||
|
license_url: "https://pixabay.com/service/license-summary/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
file_name: "silver-birch.jpg",
|
||||||
|
category: "trees",
|
||||||
|
creator: "Jonnelle Yankovich",
|
||||||
|
creator_url: "https://unsplash.com/@jey_photography",
|
||||||
|
host: "Unsplash",
|
||||||
|
src_url: "https://unsplash.com/photos/green-tree-during-daytime-EIpzTB1BpS8",
|
||||||
|
license: "Unsplash License",
|
||||||
|
license_url: "https://unsplash.com/license"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
file_name: "maple-tree.jpg",
|
||||||
|
category: "trees",
|
||||||
|
creator: "yamasa-n",
|
||||||
|
creator_url: "https://unsplash.com/@heppoko_yama",
|
||||||
|
host: "Unsplash",
|
||||||
|
src_url: "https://unsplash.com/photos/red-and-green-maple-leaves-HqcZ616IEHc",
|
||||||
|
license: "Unsplash License",
|
||||||
|
license_url: "https://unsplash.com/license"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
file_name: "crepe-myrtle.jpg",
|
||||||
|
category: "shrubs",
|
||||||
|
creator: "phoenix727",
|
||||||
|
creator_url: "https://pixabay.com/users/phoenix727-2349160/",
|
||||||
|
host: "Pixabay",
|
||||||
|
src_url: "https://pixabay.com/images/search/crepe%20myrtle/",
|
||||||
|
license: "Pixabay Content License",
|
||||||
|
license_url: "https://pixabay.com/service/license-summary/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
file_name: "hydrangea.jpg",
|
||||||
|
category: "shrubs",
|
||||||
|
creator: "Couleur",
|
||||||
|
creator_url: "https://pixabay.com/users/couleur-1195798/",
|
||||||
|
host: "Pixabay",
|
||||||
|
src_url: "https://pixabay.com/images/search/hydrangea/",
|
||||||
|
license: "Pixabay Content License",
|
||||||
|
license_url: "https://pixabay.com/service/license-summary/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
file_name: "holly.jpg",
|
||||||
|
category: "shrubs",
|
||||||
|
creator: "WolfBlur",
|
||||||
|
creator_url: "https://pixabay.com/users/wolfblur-2503887/",
|
||||||
|
host: "Pixabay",
|
||||||
|
src_url: "https://pixabay.com/images/search/holly/",
|
||||||
|
license: "Pixabay Content License",
|
||||||
|
license_url: "https://pixabay.com/service/license-summary/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
file_name: "bird-house.jpg",
|
||||||
|
category: "accessories",
|
||||||
|
creator: "Roland Lehmler",
|
||||||
|
creator_url: "https://pixabay.com/users/rlehmler-84553/",
|
||||||
|
host: "Pixabay",
|
||||||
|
src_url: "https://pixabay.com/images/search/birdhouse/",
|
||||||
|
license: "Pixabay Content License",
|
||||||
|
license_url: "https://pixabay.com/service/license-summary/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
file_name: "watering-can.jpg",
|
||||||
|
category: "accessories",
|
||||||
|
creator: "Lorrie Schoettler",
|
||||||
|
creator_url: "https://pixabay.com/users/stonyridgefarm-6290522/",
|
||||||
|
host: "Pixabay",
|
||||||
|
src_url: "https://pixabay.com/images/search/watering%20can/",
|
||||||
|
license: "Pixabay Content License",
|
||||||
|
license_url: "https://pixabay.com/service/license-summary/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
file_name: "garden-pots.jpg",
|
||||||
|
category: "accessories",
|
||||||
|
creator: "PublicDomainPictures",
|
||||||
|
creator_url: "https://pixabay.com/users/publicdomainpictures-14/",
|
||||||
|
host: "Pixabay",
|
||||||
|
src_url: "https://pixabay.com/images/search/garden%20pots/",
|
||||||
|
license: "Pixabay Content License",
|
||||||
|
license_url: "https://pixabay.com/service/license-summary/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
file_name: "string-of-pearls.jpg",
|
||||||
|
category: "indoor",
|
||||||
|
creator: "rawpixel.com",
|
||||||
|
creator_url: "https://www.rawpixel.com/",
|
||||||
|
host: "rawpixel.com",
|
||||||
|
src_url: "https://www.rawpixel.com/image/16390470",
|
||||||
|
license: "rawpixel Business License",
|
||||||
|
license_url: "https://www.rawpixel.com/services/licenses/business"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
file_name: "spider-plant.jpg",
|
||||||
|
category: "indoor",
|
||||||
|
creator: "Lucian Alexe",
|
||||||
|
creator_url: "https://unsplash.com/@lucian_alexe",
|
||||||
|
host: "Unsplash",
|
||||||
|
src_url: "https://unsplash.com/photos/green-leaf-plant-in-pot-Si8rYoK5tf0",
|
||||||
|
license: "Unsplash License",
|
||||||
|
license_url: "https://unsplash.com/license"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
file_name: "zebra-plant.jpg",
|
||||||
|
category: "indoor",
|
||||||
|
creator: "Galina N",
|
||||||
|
creator_url: "https://unsplash.com/@galina88",
|
||||||
|
host: "Unsplash",
|
||||||
|
src_url: "https://unsplash.com/photos/green-succulent-in-teal-ceramic-vase-miziNqvJx5M",
|
||||||
|
license: "Unsplash License",
|
||||||
|
license_url: "https://unsplash.com/license"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
file_name: "fire-pit.jpg",
|
||||||
|
category: "patio",
|
||||||
|
creator: "Tim Gouw",
|
||||||
|
creator_url: "https://unsplash.com/@punttim",
|
||||||
|
host: "Unsplash",
|
||||||
|
src_url: "https://unsplash.com/photos/burning-firewoods-on-grille-MApjpqu9V7E",
|
||||||
|
license: "Unsplash License",
|
||||||
|
license_url: "https://unsplash.com/license"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
file_name: "string-lights.jpg",
|
||||||
|
category: "patio",
|
||||||
|
creator: "Giorgio Trovato",
|
||||||
|
creator_url: "https://unsplash.com/@giorgiotrovato",
|
||||||
|
host: "Unsplash",
|
||||||
|
src_url: "https://unsplash.com/photos/string-lights-in-the-street-e75PYAhhZRY",
|
||||||
|
license: "Unsplash License",
|
||||||
|
license_url: "https://unsplash.com/license"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
file_name: "parlor-palm.jpg",
|
||||||
|
category: "patio",
|
||||||
|
creator: "Natalie Kinnear",
|
||||||
|
creator_url: "https://unsplash.com/@nataliekinnear",
|
||||||
|
host: "Unsplash",
|
||||||
|
src_url: "https://unsplash.com/photos/a-potted-plant-sitting-on-top-of-a-wooden-table-Uii3CSyuItI",
|
||||||
|
license: "Unsplash License",
|
||||||
|
license_url: "https://unsplash.com/license"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
file_name: "garden-hose.jpg",
|
||||||
|
category: "tools",
|
||||||
|
creator: "Seiya Maeda",
|
||||||
|
creator_url: "https://unsplash.com/@seiya_maeda",
|
||||||
|
host: "Unsplash",
|
||||||
|
src_url: "https://unsplash.com/photos/a-bunch-of-green-hoses-sitting-on-top-of-a-wooden-box-xbqLvtw_nd0",
|
||||||
|
license: "Unsplash License",
|
||||||
|
license_url: "https://unsplash.com/license"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
file_name: "gardening-tools.jpg",
|
||||||
|
category: "tools",
|
||||||
|
creator: "Jeremy Boley",
|
||||||
|
creator_url: "https://unsplash.com/@jeremyboley",
|
||||||
|
host: "Unsplash",
|
||||||
|
src_url: "https://unsplash.com/photos/a-couple-of-metal-objects-with-a-metal-object-on-top-of-them-DPQMn-nPSy8",
|
||||||
|
license: "Unsplash License",
|
||||||
|
license_url: "https://unsplash.com/license"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
file_name: "wheelbarrow.jpg",
|
||||||
|
category: "tools",
|
||||||
|
creator: "Marc Pell",
|
||||||
|
creator_url: "https://unsplash.com/@blinky264",
|
||||||
|
host: "Unsplash",
|
||||||
|
src_url: "https://unsplash.com/photos/a-green-wheelbarrow-sitting-on-top-of-a-lush-green-field-L9e7PdFZ5y4",
|
||||||
|
license: "Unsplash License",
|
||||||
|
license_url: "https://unsplash.com/license"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
file_name: "bark-mulch.jpg",
|
||||||
|
category: "landscaping",
|
||||||
|
creator: "K Adams",
|
||||||
|
creator_url: "https://unsplash.com/@kadams77",
|
||||||
|
host: "Unsplash",
|
||||||
|
src_url: "https://unsplash.com/photos/a-pile-of-brown-leaves-gbtNHka1MYw",
|
||||||
|
license: "Unsplash License",
|
||||||
|
license_url: "https://unsplash.com/license"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
file_name: "pea-gravel.jpg",
|
||||||
|
category: "landscaping",
|
||||||
|
creator: "Toufique",
|
||||||
|
creator_url: "https://unsplash.com/@toufique",
|
||||||
|
host: "Unsplash",
|
||||||
|
src_url: "https://unsplash.com/photos/assorted-concrete-stones-U9oMaXgI4VI",
|
||||||
|
license: "Unsplash License",
|
||||||
|
license_url: "https://unsplash.com/license"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
file_name: "stone-pavers.jpg",
|
||||||
|
category: "landscaping",
|
||||||
|
creator: "KC Shum",
|
||||||
|
creator_url: "https://unsplash.com/@kcshum",
|
||||||
|
host: "Unsplash",
|
||||||
|
src_url: "https://unsplash.com/photos/a-close-up-of-a-sidewalk-with-green-paint-on-it-5YJOpybbcZg",
|
||||||
|
license: "Unsplash License",
|
||||||
|
license_url: "https://unsplash.com/license"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
credits
|
||||||
|
};
|
0
src/_data/inventory.js
Normal file
BIN
src/images/_m-thumbs/accessories/bird-house.jpg
Normal file
After Width: | Height: | Size: 52 KiB |
BIN
src/images/_m-thumbs/accessories/garden-pots.jpg
Normal file
After Width: | Height: | Size: 42 KiB |
BIN
src/images/_m-thumbs/accessories/watering-can.jpg
Normal file
After Width: | Height: | Size: 50 KiB |
BIN
src/images/_m-thumbs/indoor/spider-plant.jpg
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
src/images/_m-thumbs/indoor/string-of-pearls.jpg
Normal file
After Width: | Height: | Size: 59 KiB |
BIN
src/images/_m-thumbs/indoor/zebra-plant.jpg
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
src/images/_m-thumbs/landscaping/bark-mulch.jpg
Normal file
After Width: | Height: | Size: 49 KiB |
BIN
src/images/_m-thumbs/landscaping/pea-gravel.jpg
Normal file
After Width: | Height: | Size: 63 KiB |
BIN
src/images/_m-thumbs/landscaping/stone-pavers.jpg
Normal file
After Width: | Height: | Size: 65 KiB |
BIN
src/images/_m-thumbs/patio/fire-pit.jpg
Normal file
After Width: | Height: | Size: 43 KiB |
BIN
src/images/_m-thumbs/patio/parlor-palm.jpg
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
src/images/_m-thumbs/patio/string-lights.jpg
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
src/images/_m-thumbs/shrubs/crepe-myrtle.jpg
Normal file
After Width: | Height: | Size: 62 KiB |
BIN
src/images/_m-thumbs/shrubs/holly.jpg
Normal file
After Width: | Height: | Size: 65 KiB |
BIN
src/images/_m-thumbs/shrubs/hydrangea.jpg
Normal file
After Width: | Height: | Size: 72 KiB |
BIN
src/images/_m-thumbs/tools/garden-hose.jpg
Normal file
After Width: | Height: | Size: 49 KiB |
BIN
src/images/_m-thumbs/tools/gardening-tools.jpg
Normal file
After Width: | Height: | Size: 57 KiB |
BIN
src/images/_m-thumbs/tools/wheelbarrow.jpg
Normal file
After Width: | Height: | Size: 55 KiB |
BIN
src/images/_m-thumbs/trees/apple-tree.jpg
Normal file
After Width: | Height: | Size: 71 KiB |
BIN
src/images/_m-thumbs/trees/maple-tree.jpg
Normal file
After Width: | Height: | Size: 58 KiB |
BIN
src/images/_m-thumbs/trees/silver-birch.jpg
Normal file
After Width: | Height: | Size: 44 KiB |
BIN
src/images/_s-thumbs/accessories/bird-house.jpg
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
src/images/_s-thumbs/accessories/garden-pots.jpg
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
src/images/_s-thumbs/accessories/watering-can.jpg
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
src/images/_s-thumbs/indoor/spider-plant.jpg
Normal file
After Width: | Height: | Size: 7.9 KiB |
BIN
src/images/_s-thumbs/indoor/string-of-pearls.jpg
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
src/images/_s-thumbs/indoor/zebra-plant.jpg
Normal file
After Width: | Height: | Size: 6.3 KiB |
BIN
src/images/_s-thumbs/landscaping/bark-mulch.jpg
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
src/images/_s-thumbs/landscaping/pea-gravel.jpg
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
src/images/_s-thumbs/landscaping/stone-pavers.jpg
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
src/images/_s-thumbs/patio/fire-pit.jpg
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
src/images/_s-thumbs/patio/parlor-palm.jpg
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
src/images/_s-thumbs/patio/string-lights.jpg
Normal file
After Width: | Height: | Size: 7.1 KiB |
BIN
src/images/_s-thumbs/shrubs/crepe-myrtle.jpg
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
src/images/_s-thumbs/shrubs/holly.jpg
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
src/images/_s-thumbs/shrubs/hydrangea.jpg
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
src/images/_s-thumbs/tools/garden-hose.jpg
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
src/images/_s-thumbs/tools/gardening-tools.jpg
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
src/images/_s-thumbs/tools/wheelbarrow.jpg
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
src/images/_s-thumbs/trees/apple-tree.jpg
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
src/images/_s-thumbs/trees/maple-tree.jpg
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
src/images/_s-thumbs/trees/silver-birch.jpg
Normal file
After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 73 KiB |
Before Width: | Height: | Size: 75 KiB |
Before Width: | Height: | Size: 55 KiB |
Before Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 44 KiB |
Before Width: | Height: | Size: 50 KiB |
Before Width: | Height: | Size: 70 KiB |
Before Width: | Height: | Size: 65 KiB |
Before Width: | Height: | Size: 110 KiB |
Before Width: | Height: | Size: 123 KiB |
BIN
src/images/orig/accessories/bird-house.jpg
Normal file
After Width: | Height: | Size: 91 KiB |
BIN
src/images/orig/accessories/garden-pots.jpg
Normal file
After Width: | Height: | Size: 84 KiB |
BIN
src/images/orig/accessories/watering-can.jpg
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
src/images/orig/indoor/spider-plant.jpg
Normal file
After Width: | Height: | Size: 40 KiB |
BIN
src/images/orig/indoor/string-of-pearls.jpg
Normal file
After Width: | Height: | Size: 294 KiB |
BIN
src/images/orig/indoor/zebra-plant.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
src/images/orig/landscaping/bark-mulch.jpg
Normal file
After Width: | Height: | Size: 108 KiB |
BIN
src/images/orig/landscaping/pea-gravel.jpg
Normal file
After Width: | Height: | Size: 254 KiB |
BIN
src/images/orig/landscaping/stone-pavers.jpg
Normal file
After Width: | Height: | Size: 294 KiB |
BIN
src/images/orig/patio/fire-pit.jpg
Normal file
After Width: | Height: | Size: 95 KiB |
BIN
src/images/orig/patio/parlor-palm.jpg
Normal file
After Width: | Height: | Size: 87 KiB |
BIN
src/images/orig/patio/string-lights.jpg
Normal file
After Width: | Height: | Size: 40 KiB |
BIN
src/images/orig/shrubs/crepe-myrtle.jpg
Normal file
After Width: | Height: | Size: 103 KiB |
BIN
src/images/orig/shrubs/holly.jpg
Normal file
After Width: | Height: | Size: 104 KiB |
BIN
src/images/orig/shrubs/hydrangea.jpg
Normal file
After Width: | Height: | Size: 118 KiB |
BIN
src/images/orig/tools/garden-hose.jpg
Normal file
After Width: | Height: | Size: 107 KiB |
Before Width: | Height: | Size: 256 KiB After Width: | Height: | Size: 256 KiB |
BIN
src/images/orig/tools/wheelbarrow.jpg
Normal file
After Width: | Height: | Size: 108 KiB |
BIN
src/images/orig/trees/apple-tree.jpg
Normal file
After Width: | Height: | Size: 120 KiB |
BIN
src/images/orig/trees/maple-tree.jpg
Normal file
After Width: | Height: | Size: 142 KiB |
Before Width: | Height: | Size: 201 KiB After Width: | Height: | Size: 201 KiB |
Before Width: | Height: | Size: 88 KiB |
Before Width: | Height: | Size: 106 KiB |
Before Width: | Height: | Size: 127 KiB |
Before Width: | Height: | Size: 83 KiB |
Before Width: | Height: | Size: 91 KiB |
Before Width: | Height: | Size: 87 KiB |
Before Width: | Height: | Size: 107 KiB |
Before Width: | Height: | Size: 106 KiB |
Before Width: | Height: | Size: 50 KiB |