diff --git a/app/routes/trippy-trails-template.jsx b/app/routes/trippy-trails-template.jsx index 958ca8e..1c2e11e 100644 --- a/app/routes/trippy-trails-template.jsx +++ b/app/routes/trippy-trails-template.jsx @@ -30,9 +30,10 @@ export function processFeaturedCollections( featuredCollections, ) { return featuredCollections.collections.nodes.map( - (collection) => { + (collection, index) => { return { id: collection.id, + inverted: index % 2 !== 0, handle: collection.handle, title: collection.title, color: collection.color.value, @@ -95,7 +96,7 @@ export default function LandingPage() {