Created
March 12, 2021 06:00
-
-
Save shuding/e2f90ff8aad63a7ed661389070a1ed86 to your computer and use it in GitHub Desktop.
Next.js Image Example
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
import Image from 'next/image' | |
import { useState } from 'react' | |
function Home() { | |
const [load, setLoad] = useState(false) | |
return <> | |
<h1>Image Optimizer Home</h1> | |
{load ? <> | |
<Image src="https://source.unsplash.com/3840x512/weekly?water" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?hill" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?jungle" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?prairies" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?nyc" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?paris" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?tokyo" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?berlin" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?ocean" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?mavericks" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?kyoto" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?shanghai" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?singapore" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?toronto" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?spain" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?nice" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?apple" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?microsoft" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?foxtort" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?next" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?sunset" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?moon" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?rainbow" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?rome" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?keyboard" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?screen" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?html" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?beer" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?garden" width="3840" height="512" layout="intrinsic" /> | |
<Image src="https://source.unsplash.com/3840x512/weekly?bridge" width="3840" height="512" layout="intrinsic" /> | |
</> : <button onClick={() => setLoad(true)}>Load 30 Images</button>} | |
</> | |
} | |
export default Home |
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
// prettier-ignore | |
module.exports = { | |
images: { | |
domains: ['source.unsplash.com'], | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment