Skip to content

Commit

Permalink
High priority for marquee image
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisLaRocque committed Jan 16, 2025
1 parent 8b94f4b commit 6ecbd00
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion next/components/marquee.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,15 @@ export default function Marquee({
<Image
src={builder
.image(image)
.width(width)
.width(width > 1800 ? 1800 : width)
.fit("max")
.auto("format")
.url()}
layout="fullWidth"
height={600}
alt={image.alt || ""}
className="relative -z-10"
loading="eager"
/>
</div>
</div>
Expand Down
4 changes: 4 additions & 0 deletions sanity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Congratulations, you have now installed the Sanity Content Studio, an open source real-time content editing environment connected to the Sanity backend.

# TODO

- Taxonomy manager add to schwab demo

## Local development

You should be able to:
Expand Down
1 change: 1 addition & 0 deletions sanity/sanity.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ const sharedConfig = {
process.env.SANITY_STUDIO_BYNDER_PORTAL_DOMAIN ||
'https://wave-trial.getbynder.com/',
}),

// Allow scheduled publishing
// scheduledPublishing(),
// TODO: change this URI to the schwab URI
Expand Down

0 comments on commit 6ecbd00

Please sign in to comment.