From 89be8c4b35fa2686c9812745f8176a2101a39e63 Mon Sep 17 00:00:00 2001 From: Steven Date: Wed, 9 Aug 2023 20:30:56 -0400 Subject: [PATCH] chore(docs): add missing "try it out" (#53815) Follow up to https://github.com/vercel/next.js/pull/53760 This follows the same pattern as other demo links on this page. --- docs/02-app/02-api-reference/01-components/image.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/02-app/02-api-reference/01-components/image.mdx b/docs/02-app/02-api-reference/01-components/image.mdx index 5e5c5df10fe9e..35aa0645e4e1e 100644 --- a/docs/02-app/02-api-reference/01-components/image.mdx +++ b/docs/02-app/02-api-reference/01-components/image.mdx @@ -783,6 +783,8 @@ const ThemeImage = (props) => { > **Good to know**: The default behavior of `loading="lazy"` ensures that only the correct image is loaded. You cannot use `priority` or `loading="eager"` because that would cause both images to load. Instead, you can use [`fetchPriority="high"`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement/fetchPriority). +Try it out: + - [Demo light/dark mode theme detection](https://image-component.nextjs.gallery/theme) ## Known Browser Bugs