import Image from 'next/image' import logo from './nextjs.png' function ImagePage(props) { return ( <>

next/image example

) } // we add getServerSideProps to prevent static optimization // to allow us to compare server-side changes export const getServerSideProps = () => { return { props: {}, } } export default ImagePage