-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 🎨 start fetching on selection * ✨ Index news hero image #2433 * 🎨 updated newsroom * 🎨 lint errors and algolia for newsroom * 🎨 transient props * :Art new player * 🎨 add pagination and translations,degrade next and next sanity * 🎨 delete new provider since downgrade * 🎨 responsive versions * 🎨 look over packages * 🎨 adjustments to max w * 🐛 fix lg padding * 🎨 update * 🎨 design changes and added radix ui accordion * 🎨 add max w * 🎨 update * 🎨 more accessibility * 🎨 wrong hook * 🎨 make algolia search box to core comp * 🎨 fix thumbnail images * 🎨 specify no end border * 🐛 fix console logs and revert sanity client * 🐛 fix responsive bugs * 🎨 allow a bit bigger images * 🎨 change initial load and refinements to sanity * 🎨 sanity pagination * 🎨 update queries * 🎨 update groqs * 🎨 take some algolia back * 🎨 revert to algolia * 🎨 add skeleton to newsroom * 🎨 remove unused --------- Co-authored-by: Padmaja <[email protected]>
- Loading branch information
1 parent
eaa9ceb
commit 7deaafe
Showing
89 changed files
with
9,049 additions
and
9,334 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,30 @@ | ||
export type ImageWithAlt = { | ||
_type: 'imageWithAlt' | ||
alt: string | ||
isDecorative?: boolean | ||
asset: { | ||
_ref: string | ||
_type: 'reference' | ||
} | ||
crop?: { | ||
_type: 'sanity.imageCrop' | ||
bottom: number | ||
left: number | ||
right: number | ||
top: number | ||
} | ||
hotspot?: { | ||
_type: 'sanity.imageHotspot' | ||
height: number | ||
width: number | ||
x: number | ||
y: number | ||
} | ||
} | ||
|
||
export type ImageWithAltAndCaption = { | ||
_type: 'imageWithAltAndCaption' | ||
attribution?: string | ||
caption?: string | ||
image: ImageWithAlt | ||
} |
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
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
Oops, something went wrong.